You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.
can somebody please test the binance exchange api on the dev branch?
Public endpoints (ticker etc. work) but as soon as I try something related to my account I get 403 responses.
E.g. try the wallet method. I think the problem is related on how the request is signed.
I tried my api key/secret using a different library (python-binance) and on that one it works perfectly.
I compared how request signing is done on python-binance and on bitex and they are slightly different (check in particular params in kwargs).
I'll investigate this further but I'd like somebody else to do a quick test and confirm it's a reproducible bug and not just on my side... just to be sure. THX
To test, try:
api = bitex.Binance('apiKey', 'apiSecret')
wallet = api.wallet().json()
print(wallet)
The text was updated successfully, but these errors were encountered:
Hi,
can somebody please test the binance exchange api on the dev branch?
Public endpoints (ticker etc. work) but as soon as I try something related to my account I get 403 responses.
E.g. try the
wallet
method. I think the problem is related on how the request is signed.I tried my api key/secret using a different library (python-binance) and on that one it works perfectly.
I compared how request signing is done on python-binance and on bitex and they are slightly different (check in particular
params
in kwargs).I'll investigate this further but I'd like somebody else to do a quick test and confirm it's a reproducible bug and not just on my side... just to be sure. THX
To test, try:
The text was updated successfully, but these errors were encountered: