views:

103

answers:

1

I have a question regarding Twitter API. I came across something called "Parameters and Values" in the API console here : http://dev.twitter.com/console. What can I put here ? I want to filter the response of public statuses to only those have the Hashtag #Give .. Can I do that from here ? What language should I use here ?

+1  A: 

That part of the API Console is simply to allow you to pass various POST parameters to find outputs (most of these parameter options are documented in the "Methods" section in the API documentation).

Filtering of tweets is related to the statuses/filtering method/parameter combination and, thus, the documentation will be your best help here (and you can test it out via the console)!

James Burgess