Poru
Poru

Reputation: 8360

Max. Requests Twitter

I wanted to use the Twitter API to get the friends status list from many users. How many requests could I request in one moment?

Little another question: What's faster: XML or JSON with a lot of data with PHP?

Upvotes: 0

Views: 659

Answers (2)

Shaun Austin
Shaun Austin

Reputation: 3842

The number of requests per hour over REST is irrelevant here as to achieve what you require (tracking the friends of many users I assume) then you need to be using site streams rather than the REST API. This will give you an initial list of friends for a followed user then will stream you updates to that user as any changes happen.

Upvotes: 0

Ryan Alford
Ryan Alford

Reputation: 7594

Currently, there is a rate limit of 350 requests per hour when using OAuth. I believe it's 150 when using Basic Auth which will be deprecated in June.

Upvotes: 2

Related Questions