0

I am interested in finding all tweets that share a given url (e.g. this story). I am not looking for how many re-tweets a single tweet gets or how many times a page is shared on Twitter (i.e. look at the page's social shares counter). Instead, I am trying to figure out how many unique tweets shared a story where the url in the tweets might be different but each tweet is pointing to the same webpage/story. So for the story I linked to above, can I get a list of all tweets that link to that NY Times article?

user3093455
  • 393
  • 1
  • 5
  • 8

1 Answers1

0

Short answer: no.

I can link to that article with shortened URLs from several sites, and it will still point to the same article.

In order to find all of the links that point to the same story, you would have to parse EVERY tweet with a shortened URL. Then, you would have to write code that calls each of the URLs to see which point to the page you're talking about.

You would have to parse millions of tweets a day, and access to Twitter's stream in those volumes is restricted.

Zoe
  • 27,060
  • 21
  • 118
  • 148
DWRoelands
  • 4,878
  • 4
  • 29
  • 42