我正在使用以下代码(来自django管理命令)来收听Twitter流 - 我在单独的命令上使用了相同的代码来成功跟踪关键字 - 我已将其分支到使用位置,并且(显然是正确的)想要在不破坏正在运行的现有分析的情况下对其进行测试。
我已按照文档进行操作,并确保该框为Long / Lat格式(事实上,我现在正在使用Twitter文档中的long / lat示例)。它看起来大致相同as the question here,我尝试使用他们的答案代码版本 - 同样的错误。如果我切换回使用'track = ...',相同的代码可以工作,所以这是位置过滤器的问题。
在streaming.py中添加打印调试,以便我可以看到发生了什么,我从self.parameters
打印出self.url
self.headers
和_run
,然后获取:
{'track': 't,w,i,t,t,e,r', 'delimited': 'length', 'locations': '-121.7500,36.8000,-122.7500,37.8000'}
/1.1/statuses/filter.json?delimited=length
和
{'Content-type': 'application/x-www-form-urlencoded'}
分别 - 在我看来,错过了以某种形式或形式搜索位置。我不相信我/我显然不是唯一一个使用tweepy location search的人,所以认为我使用它的问题比在tweepy中的错误更多(我在2.3.0) ,但我的实施看起来很正确。
我的流处理代码在这里:
consumer_key = 'stuff'
consumer_secret = 'stuff'
access_token='stuff'
access_token_secret_var='stuff'
import tweepy
import json
# This is the listener, resposible for receiving data
class StdOutListener(tweepy.StreamListener):
def on_data(self, data):
# Twitter returns data in JSON format - we need to decode it first
decoded = json.loads(data)
#print type(decoded), decoded
# Also, we convert UTF-8 to ASCII ignoring all bad characters sent by users
try:
user, created = read_user(decoded)
print "DEBUG USER", user, created
if decoded['lang'] == 'en':
tweet, created = read_tweet(decoded, user)
print "DEBUG TWEET", tweet, created
else:
pass
except KeyError,e:
print "Error on Key", e
pass
except DataError, e:
print "DataError", e
pass
#print user, created
print ''
return True
def on_error(self, status):
print status
l = StdOutListener()
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret_var)
stream = tweepy.Stream(auth, l)
#locations must be long, lat
stream.filter(locations=[-121.75,36.8,-122.75,37.8], track='twitter')
答案 0 :(得分:4)
这里的问题是坐标的顺序。
正确的格式是: SouthWest Corner(Long,Lat),NorthEast Corner(Long,Lat)。我让他们换位了。 :(
答案 1 :(得分:2)
流API不允许同时按位置和关键字进行过滤。 你必须参考这个答案我之前遇到过同样的问题 https://stackoverflow.com/a/22889470/4432830