I want to track all the tweets posted with any given URLs in twitter.
For example: If I input a URL keyword - www.example.com ; It should gather all the tweets/retweets posted in twitter with that specific URL key.
Expected match case : www.example.com, www.example.com/test/, www.example.com/test/test, Example URL www.example.com/test/ , etc.
I have checked the possibilities with search and steaming APIs.
Search API returned only very limited set of results,as said in its documentation.
Hence I tried streaming API,since it was suggested for gathering the whole set of real time tweets.
From the Streaming API documentations, I found using space instead of dot with URL keywords could gather all tweets.
Hence request parameter ‘example com’ should match against the following set of keywords in tweets,
example.com
www.example.com
foo.example.com
foo.example.com/bar
I hope my startup isn’t merely another example of a dot com boom!
But when I tried posting tweets with these URLs (and setting keyword as said above) , the streamer wasn’t capturing the data.
I can understand twitter isn’t directly accepting URL as different type of keyword, but is their any working method to capture all the real time tweets?