当我尝试点击他们的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}]}
有人可以解释我如何解决这个问题吗?
答案 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/用于您的请求