I like to get tweets by locations(e.g, new york city)
I added this line into get_tweets.php
 $stream->setLocations(array(
       array(-74,40,-73,418),
    ));
I also tried this line
 
$stream->setLocations(array('New York City'));
None is working, the program is still getting all tweets from everywhere.
can anyone help me?