这真的是身份验证问题还是与其他问题有关? 我需要修改什么才能摆脱错误?
#!/usr/bin/env python
import tweepy
ckey = 'xxx'
csecret = 'xxx'
atoken = 'xxx'
asecret = 'xxx'
auth = tweepy.OAuthHandler(ckey, csecret)
auth.set_access_token(atoken, asecret)
api = tweepy.API(auth)
results = tweepy.api.search(geocode='50,50,5mi')
for result in results:
print result.text
print result.location if hasattr(result, 'location') else "Undefined location"
这是我得到的错误
C:\Python27\python.exe C:/untitled/testfile.py
Traceback (most recent call last):
File "C:/untitled/testfile.py", line 18, in <module>
results = tweepy.api.search(geocode='50,50,5mi')
File "build\bdist.win-amd64\egg\tweepy\binder.py", line 197, in _call
File "build\bdist.win-amd64\egg\tweepy\binder.py", line 173, in execute
tweepy.error.TweepError: [{u'message': u'Bad Authentication data', u'code': 215}]
答案 0 :(得分:2)
你做错了:
应该是 -
#!/usr/bin/env python
import tweepy
ckey = 'xxx'
csecret = 'xxx'
atoken = 'xxx'
asecret = 'xxx'
auth = tweepy.OAuthHandler(ckey, csecret)
auth.set_access_token(atoken, asecret)
api = tweepy.API(auth)
# here's where you went wrong (tried and tested), should be
#results = api.search(geocode='50,50,5mi')
# try with the following lat long
results = api.search(geocode='39.833193,-94.862794,5mi')
for result in results:
print result.text
print result.location if hasattr(result, 'location') else "Undefined location"