Hy Everyone!
Since 17.10.2012 our twitter program is working bad. Before this date every tweet search run correctly. But approx. a week now every search attempt return with error (page does not exist). We try to figure out what’s going on but still can not solve the problem.
Shortly:
-
Use tmhOauth (but tried twitterOauth… not solve the problem)
-
authentication is fine
-
this part of the code is return with good results:
$connection->request(‘GET’,
$connection->url(‘1.1/users/lookup’),
array(‘screen_name’ => join(",", $users_name)
)
);
-
but this one generate error:
$connection->request(‘GET’,
$connection->url(‘1/search’),
array(‘q’ => urlencode($query),
‘rpp’ => 60
)
);
The error is the following: {“errors”:[{“message”:“Sorry, that page does not exist”,“code”:34}]}
maybe you know that 
- try to use the 1.1 but generate the same error:
$connection->request(‘GET’,
$connection->url(‘1.1/search’),
array(‘q’ => urlencode($query),
‘count’ => 60
)
);
I read this article: https://dev.twitter.com/discussions/10803
and many others but i don’t know why isn’t working properly. Maybe I miss something or did it wrong?
If there is anyone can help me I really appriciate it and thanks it in advance!
Have a nice day!
Jeremy