Shun Yamada
Shun Yamada

Reputation: 979

Twitter GET friends/lost API limitaion

In the case of standard plan, more than 15 times GET friends/list fetching isn’t be allowed within 15min. How can I increase this limit?

Upvotes: 0

Views: 19

Answers (1)

Terence Eden
Terence Eden

Reputation: 14334

You cannot increase the limit - but you can increase how many results are returned.

According to the documentation, normally you will only get 20 results per API call. You can increase this to up to 200 by using the count parameter.

For example, friends/list.json?screen_name=edent&count=200 will get you the first 200 of my friends. You can then use the cursor to get more.

Upvotes: 1

Related Questions