Here's what I need.
I need to use
https://api.twitter.com/1/statuses/user_timeline.json?........ query to retrieve tweets with specific hashtags only.
Currently I can specify include_entities=true but seems I have no way of specifying which particular hashtags I am after.
So the questtion is:
Is there a workaround/solution here or do I have to get all the tweets and filter out the ones with the hashtags I am looking for?
Basically I'd like to be able to call
https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&screen_name=my_screen_name&hashtag=my_hash_tag&count=10 and get the 10 latest tweets from @my_screen_name that do have the #my_hash_tag.
Thanks for help.