Hi,
after reviewing these links:
https://dev.twitter.com/twitter-kit/ios/twitter-login
https://dev.twitter.com/rest/public/rate-limiting
https://dev.twitter.com/rest/public/rate-limits
I couldn’t find which is the limit for “guest login” attempts. I’m receiving a “Too many requests” error if I try it several times, but I’d need to know the exact number which I’m guessing is 15.
Besides, in the first of the links there is a section that says:
Guest authentication is an extension to application authentication and as such, the permission scope and rate limits are the same as application authentication. There are however two major differences:
- rate limits will scale with the number of users of your application
- guest auth tokens have a time expiration
What does “scale with the number of users” mean? Is that the app auth limit for a particular resource is going to grow with the number of users? (i.e. statuses/timeline has an app auth rate limit of 300 requests, if I have 10 users it won’t be 300, will it be 300*x?? What would be x?)
What would be the expiration time for this tokens?
Thanks