I am using twitter latest REST API v1.1 and application-only authentication to fetch 8 users today's feed/status to show in a listView. I was using https://api.twitter.com/1.1/statuses/user_timeline.json?count=10&exclude_replies=true&screen_name=UserName to fetch each user feed. But I don't know how to fetch only today's feed. So I fetched around latest 10 feed by using &count=10 and filter these based on today's date. But it seems to be a poor way. Also I want to fetch my 8 user's feed together for better performance because fetching 8 user's feed individually is time expensive and not a good way. So
How can I get a JSON feed of today's tweets of 8 users in one request? What should be the URL?