我正在学习 Python,我想开始使用 Twitter 的流 API。我知道如何构建一个非常基本的应用程序来读取页面的内容,urllib2
并且过去已经成功地做到了这一点。但是,https://
此特定 Twitter 流 API 所需的安全连接似乎不适用于 urllib2。
我试图从以下链接获取 JSON:https://stream.twitter.com/1.1/statuses/filter.json?locations=-122.75,36.8,-121.75,37.8
通过编写以下内容:
import urllib2
url = "https://stream.twitter.com/1.1/statuses/filter.json?locations=-122.75,36.8,-121.75,37.8"
print urllib2.urlopen(url).read()
但是,回溯说我没有被授权;我推测这是因为 HTTPS SSL 连接,研究支持了这一点。所以我想我的问题是从需要这种 SSL 连接的链接获取 JSON 的最佳方法是什么?我也尝试过 curl,但再次收到错误 401。
以下是完整的追溯。
回溯(最后一次调用):文件“”,第 1 行,在文件“/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py”中,第 126 行,在 urlopen 文件中“/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py”,第 400 行,在打开的文件“/System/Library/Frameworks/Python.framework/Versions/2.7/lib /python2.7/urllib2.py”,第 513 行,在 http_response 文件中“/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py”,第 438 行,在错误文件中“ /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py”,第 372 行,在 _call_chain 文件中“/System/Library/Frameworks/Python.framework/Versions/2.7/lib/ python2.7/urllib2.py”,第 521 行,在 http_error_default urllib2 中。HTTPError:HTTP 错误 401:未经授权
提前谢谢了。