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.

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.

share|improve this question
why is this community wiki? you shouldn't put all your questions under community w ... – Karussell Oct 20 '10 at 21:37
Well at the very least you need an account with Twitter. They don't just let anyone crawl their search API, for performance reasons. We'd see the fail whale all the time instead of like, daily. – Dusda Oct 20 '10 at 21:38

2 Answers

up vote 1 down vote accepted

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

share|improve this answer

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:

http://urls.api.twitter.com/1/urls/count.json?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/

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/"}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.