使用 Python 的 Twitter API 出现问题

发布于 2024-11-07 14:43:18 字数 275 浏览 0 评论 0原文

我在这段 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:
enter image description here

I'm using this package: http://github.com/sixohsix/twitter

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尬尬 2024-11-14 14:43:18

由于新的 API 更改,您需要使用此程序:

import twitter
twitter_api = twitter.Twitter(domain="api.twitter.com", api_version='1')
WORLD_WOE_ID = 1
world_trends = twitter_api.trends._(WORLD_WOE_ID) 
trends = world_trends()
print [trend['name'] for trend in trends[0]['trends']]

这部分基于 图书勘误网站

Because of the new API change, you need to use this program:

import twitter
twitter_api = twitter.Twitter(domain="api.twitter.com", api_version='1')
WORLD_WOE_ID = 1
world_trends = twitter_api.trends._(WORLD_WOE_ID) 
trends = world_trends()
print [trend['name'] for trend in trends[0]['trends']]

This is based, in part, on the book errata website.

花落人断肠 2024-11-14 14:43:18

根据 trends 调用的 Twitter API 文档 域应该是 api.twitter.com:

import twitter
twitter_search = twitter.Twitter(domain="api.twitter.com")
print twitter_search.trends()

{u'trends': [{u'url': u'http://search.twitter.com/search?q=%23weedcommandments', 
 u'name': u'#weedcommandments'}, ...

According to the Twitter API documentation for the trends call the domain should be api.twitter.com:

import twitter
twitter_search = twitter.Twitter(domain="api.twitter.com")
print twitter_search.trends()

{u'trends': [{u'url': u'http://search.twitter.com/search?q=%23weedcommandments', 
 u'name': u'#weedcommandments'}, ...
把回忆走一遍 2024-11-14 14:43:18

您可能需要查看《挖掘社交网络》第 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文