使用Twitters API

时间:2014-02-21 14:48:30

标签: python api twitter

当我尝试点击他们的API时,我遇到了身份验证错误。我不是将它用于应用程序,而只是编写一些脚本来玩。

r = requests.get('https://api.twitter.com/1.1/users/show.json?screen_name=dhh')
print r.text

返回

{"errors":[{"message":"Bad Authentication data","code":215}]}

有人可以解释我如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

请看这里https://dev.twitter.com/docs/auth 您必须首先通过身份验证,才能根据https://dev.twitter.com/docs/api/1.1/get/users/show

的要求提出此类请求

您可以将此库http://code.google.com/p/python-twitter/用于您的请求