我有一个使用python2.7和rauth与etrade api通信的应用程序。
获取etrade验证令牌并设置授权会话是有效的,我可以成功执行这样的GET访问:
url = 'https://etwssandbox.etrade.com/accounts/sandbox/rest/accountlist.json'
response = session.get(url, params = {'format': 'json'}, header_auth=True)
我根本没有使用POST访问取得任何成功,尽管还有很多搜索尚未找到一个显示post与rauth一起使用的示例。我在尝试:
url = 'https://etwssandbox.etrade.com/order/sandbox/rest/placeequityorder'
id = datetime.datetime.now().strftime('%y%m%d%H%M')+ticker
payload = {
"PlaceEquityOrder": {
"-xmlns": "http://order.etws.etrade.com",
"EquityOrderRequest": {
"accountId": account,
"clientOrderId": id,
"limitPrice": "",
"quantity": qty,
"symbol": ticker,
"orderAction": "BUY",
"priceType": "MARKET",
"marketSession": "REGULAR",
"orderTerm": "GOOD_FOR_DAY"
}
}
}
response = session.post(url, payload, header_auth=True)
我从etrade得到的回复是:
{
'cookies':<RequestsCookieJar [
] >,
'_content':'<Error>\n <message>oauth_problem=signature_invalid</message>\n</Error>',
'headers':{
'Content-Length':'69',
'Expires':'Sat, 21 May 1995 12:00:00 GMT',
'Keep-Alive':'timeout=60, max=400',
'apiServerName':'20w44m3',
'Connection':'Keep-Alive',
'Pragma':'no-cache',
'Cache-Control':'no-store, no-cache, must-revalidate, post-check=0, pre-check=0',
'Date':'Wed, 17 May 2017 15:16:42 GMT',
'Server':'Apache',
'WWW-Authenticate':'OAuth realm=https://etws.etrade.com/,oauth_problem=signature_invalid'
},
'url': u'https://etwssandbox.etrade.com/order/sandbox/rest/placeequityorder',
'status_code':401,
'_content_consumed':True,
'encoding':None,
'request':<PreparedRequest [
POST
] >,
'connection':<requests.adapters.HTTPAdapter object at 0x7f3187f71790>,
'elapsed':datetime.timedelta(0,
0,
149246 ),
'raw':<requests.packages.urllib3.response.HTTPResponse object at 0x7f3186c7ab90>,
'reason':'Unauthorized',
'history':[
]
}
我假设我在POST请求中做错了,但rauth库是否可能没有将身份验证内容添加到POST请求中?
答案 0 :(得分:0)
好吧,我没有找到失败的rauth POST请求的底部,但我找到了另一种解决方案。
我正在使用etradePythonApi(https://github.com/haualan/etradePythonAPI/blob/master/etradepy.py)中的etrade访问函数,除了我剥离了分裂&amp; pyvirtualdisplay代码试图将登录详细信息删除/插入到etrade验证页面中,而是将其替换为此页面上的ethann答案的oob代码:Getting an oauth request token from etrade in Python
一切都很好地直接使用请求,而不是通过rauth包装器,这似乎证实POST请求没有得到Outh在rauth中的祝福。
更新:我已将我的程序供其他人使用&amp;适应https://github.com/geekbrit/EtradeHotKeys