使用 Python 的 Twitter API 出现问题
我在这段 python 代码中遇到了一些麻烦:
import twitter
twitter_search = twitter.Twitter(domain="search.twitter.com")
trends = twitter_search.trends()
错误(未找到 404 页面)就在这里:
我正在使用此软件包:
I'm having some trouble in this python code:
import twitter
twitter_search = twitter.Twitter(domain="search.twitter.com")
trends = twitter_search.trends()
The error (404 page not found) is right here:
I'm using this package: http://github.com/sixohsix/twitter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于新的 API 更改,您需要使用此程序:
这部分基于 图书勘误网站。
Because of the new API change, you need to use this program:
This is based, in part, on the book errata website.
根据
trends
调用的 Twitter API 文档 域应该是 api.twitter.com:According to the Twitter API documentation for the
trends
call the domain should beapi.twitter.com
:您可能需要查看《挖掘社交网络》第 1 章的更新版 IPython Notebook,其中显示了此工作流程和 API 调用的更新示例,以及与 Twitter v1.1 API 兼容的其他一些上下文。请参阅 http: //nbviewer.ipython.org/urls/raw.github.com/ptwobrussell/Mining-the-Social-Web/master/ipython_notebooks/Chapter1.ipynb 用于笔记本的只读版本。
You may want to checkout the updated IPython Notebook for Chapter 1 of Mining the Social Web that shows an updated example for this workflow and API call as well as a little bit of other context that is compatible with Twitter's v1.1 API. See http://nbviewer.ipython.org/urls/raw.github.com/ptwobrussell/Mining-the-Social-Web/master/ipython_notebooks/Chapter1.ipynb for a read-only version of the notebook.