Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Ive set my account to only accept API calls from my trusted local IP. However, this setting is preventing me from using the API. When running from jupyter notebook from my local machine I get a permission denied error. Turning off IP address restriction allows me to make calls to the API. I have checked how my IP appears to outside servers by running the following code:

from urllib.request import urlopen
print(urlopen('https://api.ipify.org?format=json').read())

The above code returns the exact IP that is in my trusted settings on my Poloniex account. I'm using the python-poloniex API wrapper

question from:https://stackoverflow.com/questions/66055213/how-to-fix-permission-denied-error-using-python-poloniex-api-wrapper

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
937 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...