coinbase - Python Client - Always Receives 401 error -


i trying use python library coinbase's api, receive 401 error on every request. tried sandbox account, new api key (with every permission) 401 on every single authenticated request.

here code:

from coinbase.client import client  client = client(api_key, api_secret)  client.get_buy_price() # works fine client.get_accounts() # not working @ 

for example, here sample sandbox key/secret (this pair has full permissions):

from coinbase.client import client  api_key = "b9hxalyqoz8z4dk2" api_secret = "falfigobfhu6ulcfbwbmpf5nrwgmx9c6"  client = client(api_key, api_secret)  print client.get_buy_price() # gets price correctly print client.get_accounts() # raises 401 

we had temporary outage on api affected small number of customers. should fixed now.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -