gokaan
gokaan

Reputation: 49

Twitter API limits

I made a website like wefollow.com. And I was using Abraham Williams (abrah.am)'s class to update user data(followers and tweets) every night. But after Twitter changed API limits I'm kind of stuck.

I'm limited to 150 or 200 requests for an hour. Which was 10,000 before. How can I update user data with these limits. Or is there any other class to solve this problem.

Thank you!

Upvotes: 3

Views: 207

Answers (2)

Mob
Mob

Reputation: 11098

Its 150 for unauthenticated users, and 350 for authenticated users. I don't think you can bypass this. Twitter was previously offering clients to be whitelisted (gets 30,000 requests per hour), but now they've removed that privilege.

So you're stuck with 350 x 24 requests per day. Its not a matter of changing libraries.

Upvotes: 1

alex
alex

Reputation: 490143

You could cache it on your server, or pipe it through YQL and then set the _maxage parameter sufficiently so it won't hit the Twitter API limit.

YQL has a 100,000 calls a day limit.

Upvotes: 2

Related Questions