Is this really an authentication problem or has it to do with something else? What do I have to modify to get rid of the error?
#!/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"
This is the error I get
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}]
Your doing it wrong:
It should be-