Thank
Also can  u help me in this ..

I want to send a query to curl library(php)  to get tweets , for
searching tweets with two words ,i.e New york OR Minneapolis.

$adde1="New York";
$adde2="Minneaolis";
$url="http://search.twitter.com/search.atom?q="; . urlencode( $adde1 +
OR + $adde2) . "&lang=en&rpp=10&page=1";

This isnt working It gives me tweets with work.letter "0" .

I also tried

$url="http://search.twitter.com/search.atom?q="; .
urlencode( $adde1 ) . "OR . " urlencode($adde2) .
"&lang=en&rpp=10&page=1";

This also didnt work.

Can you help with this

On May 10, 1:36 pm, Matt Harris <thematthar...@twitter.com> wrote:
> Hi Harik,
>
> That is correct. Adding Geocode as a querystring parameter will AND it with
> the queried keywords.
> There is an updated description of how this works on our developer resources
> site:
>    http://dev.twitter.com/doc/get/search
> and
>    http://dev.twitter.com/pages/using_search
>
> Best,
> @themattharris
> Developer Advocate, Twitterhttp://twitter.com/themattharris
>
>
>
>
>
>
>
> On Tue, May 10, 2011 at 11:08 AM, harik <padmahar...@gmail.com> wrote:
> > Can I combine Keyword and Geocode query this way ?
>
> >http://search.twitter.com/search.atom?q=twitter&geocode=37.781157,-12...
>
> > I read here tht geocode does not support disjunction?
>
> >http://apiwiki.twitter.com/w/page/22554756/Twitter-Search-API-Method:...
>
> > So will the abv query work?
> > Also ,does the above query work as an "And" operator?
> > Like it would give the tweets with the word "twitter"and near  to that
> > location?
> > If I am wrong please correct me.
>
> > --
> > Twitter developer documentation and resources:https://dev.twitter.com/doc
> > API updates via Twitter:https://twitter.com/twitterapi
> > Issues/Enhancements Tracker:
> >https://code.google.com/p/twitter-api/issues/list
> > Change your membership to this group:
> >https://groups.google.com/forum/#!forum/twitter-development-talk

-- 
Twitter developer documentation and resources: https://dev.twitter.com/doc
API updates via Twitter: https://twitter.com/twitterapi
Issues/Enhancements Tracker: https://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
https://groups.google.com/forum/#!forum/twitter-development-talk

Reply via email to