我正在使用 Phirehose 使用 Twitter 流 API 拉推文。我想用某些关键字提取带有地理标记的推文,如下所示:
$sc->setLocations(array(array(-180,-90,180,90))); //any geotagged tweet
$sc->setTrack($sc->getKeywords());
getKeywords 类函数如下所示:
public function getKeywords()
{
$array = array('hurricane', 'flood', 'tornado','tsunami','earthquake');
return $array;
}
问题是这setLocation()
似乎导致setTrack()
不使用这些关键字提取推文。setLocation()
如果我完全删除,则setTrack()
可以很好地提取关键字。有什么方法可以提取包含这些关键字的地理标记推文?