hi
I’m fetching 100 tweets from the L.A.-area with a radius of 1000km and only get like 0 to 3 results with GEO filled.
Is this normal?
I’m Using the php-files of Abraham Williams with “https://api.twitter.com/1.1/” an OAuth
and this GET-function to do the search:
* GET wrapper for oAuthRequest.
*/
function get($url, $parameters = array()) {
$response = $this->oAuthRequest($url, 'GET', $parameters);
if ($this->format === 'json' && $this->decode_json) {
return json_decode($response);
}
return $response;
}
The request data looks like this:
$connection->get("search/tweets",
array('q'=>'',
'geocode'=>'34.025348,-118.245850,1000km',
'count'=>'100',
'lang'=>'en'));
thank you!