i have a small Twitter App based on Zend_Oath_Consumer.
User gives me a permission to show some statistic about his account.
Due to this page https://dev.twitter.com/docs/rate-limiting each user should have 350 requests, but actually all users share the 150 Request/hour limit.
Does Zend send unsigned requests? Where can i search for a error?
Solved. and it it was my error, as expected…
wrong:
$uri=’http://api.twitter.com/1/users/show.json?screen_name=’.$name;
$client->setUri($uri)
right:
$uri=’http://api.twitter.com/1/users/show.json;
$client->setUri($uri);
$client->setParameterGet($uri,array(“screen_name”=>$name));
%&$§/&%! <-untranslatable swearword….