Hacker Wins
Hacker Wins

Reputation: 1289

How to get results with twitter search api?

I wish to get tweets with a keyword. But There is no result with any keyword.

http://search.twitter.com/search.json?q=summer

How to get results with Twitter Search API?

Upvotes: 2

Views: 2429

Answers (1)

Jimbo
Jimbo

Reputation: 26523

Version 1 of the twitter API has been deprecated and is being removed. Not sure how you can miss the giant warnings on the twitter dev site ;) This means simple code like the above will not work any more.

So, you now need to make authenticated requests (OAuth) using the 1.1 API, and it's nowhere near as simple as just doing a (in PHP) file_get_contents(http://search.twitter.com/ ...).

I couldn't see any server-side languages you use from your profile, but I wrote a lengthy post explaining the issue (with pictures) and how to use a library to perform authenticated requests.

Upvotes: 5

Related Questions