
ETrade api - invalid Consumer key and/or session token
Mar 1, 2021 · When I attempt to make a request to Etrade's Account List endpoint in sandbox (https://apisb.etrade.com/v1/accounts/list), I am getting an HTTP 401 - "Unauthorized request …
Change equity order in etrade api? - Stack Overflow
Mar 3, 2021 · Does anyone know how to change an equity order utilizing the etrade API? I can do place order just fine but for some reason changing an equity order seems impossible! I have …
Trying to act on a page redirect with JavaFX and WebView
Oct 20, 2023 · I am trying to script logging in to a 3rd party site to obtain a value. For several years I was able to use javaFX to do this, but it recently stopped working. I have tried using …
Getting an oauth request token from etrade - Stack Overflow
I'm trying to get an oauth request token from the etrade api (sandbox) in Python with this thing: import requests from oauthlib.oauth1 import Client consumer_key = 'foo' # actual key used
c# - E*Trade API frequently returns HTTP 401 ... - Stack Overflow
Dec 24, 2020 · Summary I have written a simple C# .NET Core application to authenticate against the E*Trade API using OAuthv1 with the intention of fetching stock quotes. I am able to …
algorithmic trading - Etrade API response indicates missing …
Sep 22, 2021 · Technical issue with etrade API. I am constructing a trailing stop sell-to-close order with the following preview in Sandbox: " {"PreviewOrderRequest": {"orderType":"OPT...
How to sign oauth signature for request token with etrade api?
Aug 30, 2020 · I'm trying to hook into eTrade's API for a project. They use an OAuth v1 flow. I'm running into error's on the very first step of the flow- getting the request token. The info from …
Getting Quotes from eTrade API in Python3 - Stack Overflow
Nov 20, 2020 · I'm trying to get quotes from the etrade API. I'm able to list accounts, get transactions, but not get quotes. I've tried removing the accounts and transactions api calls but …
Etrade API Oauth 1.0 flow fails with invalid oauth_signature
Nov 15, 2022 · I would like to authenticate against the Etrade API using Go and Postman. I am following the official Etrade API Developer Docs: I successfully completed the Oauth 1.0 flow …
Get a production oauth request token from etrade in Python oauth ...
Nov 10, 2020 · I followed the updated code found via cswiger found here Getting an oauth request token from etrade in Python and updated for use via the production URLs while using …