Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm calling the twitter search using the command line and for all things it works well , except for searches beyond the first page.

curl --silent --include -k https://mobile.twitter.com/search?q=michael

works fine, and I find the 'load older' results link after I parse, and come up with

curl --silent --include -k https://mobile.twitter.com/search?max_id=273642014212501504&q=michael

calling this , only returns the signup page, and no search results -

however, if i paste the url with the max_id into a browser, the results come up correctly.

share|improve this question

1 Answer

Twitter has a search API. You should use it.

curl -si http://search.twitter.com/search.json?q=michael

and

curl -si http://search.twitter.com/search.json?q=michael&max_id=273642014212501504

both works fine and returns easily parsable json which should serve your needs.

Replace search.json with search.atom if you prefer results in atom.

share|improve this answer
I know that twitter has an API -.. – Ashod Apakian Nov 28 '12 at 12:03
@AshodApakian Then why aren't you using it? – flesk Nov 28 '12 at 12:19
Because I'm attempting to write a search engine, and developing a web crawler – Ashod Apakian Nov 28 '12 at 19:49
@AshodApakian And you're doing it in bash? You should take a look at mobile.twitter.com/robots.txt. Twitter doesn't really want you to crawl that page, and you should respect that. – flesk Nov 29 '12 at 8:19

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.