I am new to twitter API. Is there any way that i can get number of retweet of any URL. I want to calculate it without any login into twitter.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
What do you want to calculate? How effective your marketing strategy is? This is not possible via twitter. Of course you can do: use the search API via link:yourlink or you could use bit.ly and their statistics to see who tweeted about destinct urls. Another solution could be http://jetwick.com which is open source now |
||||
|
|
|
This will return a simple json with a count property of re-tweets for a specific URL http://urls.api.twitter.com/1/urls/count.json?url=SOME_URL_HERE Example: API CALL: JSON RESPONSE: {"count":235,"url":"http://techcrunch.com/2011/07/05/kissmetrics-now-lets-sites-analyze-their-users-browsing-habits-%E2%80%94%C2%A0before-they-even-sign-up/"} |
||||
|
|