Hey there, You can can monitor your current rate limit status by using the '/1/account/rate_limit_status' endpoint or by checking your X-RateLimit response headers values. By the way, it looks like the "Current API hits remaining" data you're reporting is your X-RateLimit-Reset header value. Could you please share the exact request you're making and the full HTTP response body + headers?
As Abraham said, signing your '/1/statuses/user_timeline' request will make it count agains the authenticated limit (350 calls per hour for the access token you're using), not the anonymous one (150 calls per IP). Be also sure to include versioning in your request URL (don't forget the '/1/' before statuses/user_timeline). Arnaud / @rno <http://twitter.com/rno> On Thu, May 19, 2011 at 5:25 PM, Map-Pin <[email protected]>wrote: > I have been away from my app for hours and just tried running it > again, with the same 400 error message and bad data: > > Current API hits remaining: 1305853176. > Current API Hourly limit: . > Current API Reset Time: Fri May 20 00:59:36 +0000 2011. > > > API Method HTTP Code Response Length Parameters > Response Snippet > statuses/user_timeline 400 0 > > I am using the PHP classes, and I wonder if I am running into an issue > where NAT is causing a huge amount of clients behind my firewall at > work to look like 1 client. I am using oauth, so I would think that > would uniquely ID myself. > > How can I be sure that I am indeed being throttled? > > I am using Abraham Williams' Twitter's OAuth API and have got my > tokens just fine... > > PHP DOCS: > Documentation: http://wiki.github.com/abraham/twitteroauth/documentation > Source: http://github.com/abraham/twitteroauth > > -- > Twitter developer documentation and resources: https://dev.twitter.com/doc > API updates via Twitter: https://twitter.com/twitterapi > Issues/Enhancements Tracker: > https://code.google.com/p/twitter-api/issues/list > Change your membership to this group: > https://groups.google.com/forum/#!forum/twitter-development-talk > -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancements Tracker: https://code.google.com/p/twitter-api/issues/list Change your membership to this group: https://groups.google.com/forum/#!forum/twitter-development-talk
