Hi all..
Just finding when using the OAuth mechanism, the
$stream->setLocations(array(
array(-122.75, 36.8, -121.75, 37.8), // San Francisco
array(-74, 40, -73, 41), // New York
));
giving "HTTP ERROR 401: Unauthorized"
--
So I inserted these lines in the bottom routine of OauthPhirehose.php
if (count($this->locationBoxes) > 0)
{
$requestParams['locations'] = implode(',', $this->locationBoxes);
}
Now the setLocations works again.