PYTHON和OANDA API

时间:2017-03-30 20:14:21

标签: python api

我正在使用Spyder IDE来运行和测试我的代码。我完成了编码。但是,当我运行它时,会出现以下内容:

/anaconda/lib/python2.7/site-packages/requests/packages/urllib3/connectionpool.py:843: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
{
    "code" : 1,
    "message" : "Invalid or malformed argument: accountId",
    "moreInfo" : "http:\/\/developer.oanda.com\/docs\/v1\/troubleshooting\/#errors"
}

如何解决此问题?

1 个答案:

答案 0 :(得分:0)

您是否阅读了link中提供的信息?

强烈建议不要使用未经验证的HTTPS请求,但是,如果您了解风险并希望禁用这些警告,则可以使用disable_warnings():

>>> import urllib3
>>> urllib3.disable_warnings()

或者,您可以使用标准日志记录模块捕获警告:

>>> logging.captureWarnings(True)

最后,您可以通过设置PYTHONWARNINGS环境变量或使用-W标志来抑制解释器级别的警告。