Open remarqUK opened 6 years ago
I think line 103 of websocket_feed_listener.py is incorrect, instead of:
path = '/users/self'
it should read
path='/users/self/verify'
this is in accordance with the GDAX documentation here:
https://docs.gdax.com/#subscribe
Making this change results in the authentication working
I'm writing a script to subscribe to the authenticated "user" channel using the code below (which used orderbook.py as its basis) and I'm passing the api_key/api_secret and passphrase through (I've redacted them in this code example)
The error I get back is:
{'message': 'Sorry, you could not be authenticated: Bad Request', 'reason': 'invalid signature', 'type': 'error'}
Any ideas ?