binance.exceptions.BinanceAPIException: APIError(code=-2015): Invalid API-key, IP, or permissions for action

Viewed 46
client = Client(api_key=config.API_KEY, api_secret=config.API_SECRET)
info = client.get_account()
print(info)

I have genereted the binance secret and key from Spot Test Network. I am using that but I am getting the following error in my code

  raise BinanceAPIException(response, response.status_code, response.text)
binance.exceptions.BinanceAPIException: APIError(code=-2015): Invalid API-key, IP, or permissions for action.
0 Answers
Related