我有一个django项目,目前正在pythonanywhere上托管,它使用开源项目ebaysdk-python的Finding api。现在在我的本地机器上,该网站运行良好,但是,当我执行api调用时,我收到此错误消息:HTTPConnectionPool(host='svcs.ebay.com', port=80): Max retries exceeded with url: /services/search/FindingService/v1 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f6560105150>: Failed to establish a new connection: [Errno 111] Connection refused',))
。
现在我已经搜索了文档和其他相关问题,但无法弄清楚问题。我已经验证我的API密钥是正确的,我执行api调用的代码直接来自文档。这样我就可以指出正确的方向:在这种情况下,最有可能导致出现此错误的原因是什么?
谢谢。