Here is a sample query which returns the twitter ids of followers of examplename:
https://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=examplename
This works great. However I would like to get followers of up to 5 different twitter accounts. This would mean 5 api calls which is inefficient and not good because I don't want to exceed the api limit. So is there a way to combine 5 different queries into 1?
This web application I am building could potentially be used by 100 simultaneous users at once, according to my employer. Would using authentication (oauth codes) increase my rate limit?
Thanks.