[twitter-dev] Wrong link in the API documentation for account/verify_credentials in XML

2011-01-23 Thread Silvio Guder
Its only a link for an example: http://dev.twitter.com/doc/get/account/verify_credentials In the example link for the XML is for JSON. Now its: http://dev.twitter.com/console?content_type=json&path=account/verify_credentials Must be: http://dev.twitter.com/console?content_type=xml&path=account/ve

[twitter-dev] Subscribing to the Site Streams API using OAuth

2011-01-23 Thread Michael Hoisie
Hi fellow Twitter devs, I'm trying to connect to the Twitter site streams API with a Go client ( http://github.com/hoisie/twitterstream ). There's no usable oauth client for Twitter in Go, so I have to write it from scratch. There seems to be something wrong with my HTTP request -- I was wonderin

[twitter-dev] Re: Is it possible to get in_replies for status id?

2011-01-23 Thread Jonathan Strauss
>From >http://groups.google.com/group/twitter-development-talk/browse_thread/thread/cdc34ae78a2350b8: GET /1/related_results/show/:id.{format} Requires authentication. If available, returns an array of replies and mentions related to the specified Tweet. There is no guarantee there will be any re

[twitter-dev] Re: replies to a particular tweet?

2011-01-23 Thread Jonathan Strauss
>From >http://groups.google.com/group/twitter-development-talk/browse_thread/thread/cdc34ae78a2350b8: GET /1/related_results/show/:id.{format} Requires authentication. If available, returns an array of replies and mentions related to the specified Tweet. There is no guarantee there will be any re

[twitter-dev] location operator for the Search API

2011-01-23 Thread Yusuke Yamamoto
Hi, What is "location" operator? The doc for the search API addresses "location" operator in "Operator Limits" paragraph. http://dev.twitter.com/doc/get/search - location operator: • results are limited to 7 days - But the operator is not listed in the following page: h

[twitter-dev] Re: How can I access auth-only Twitter API methods from a web application?

2011-01-23 Thread Marco Tedone
Have a look at this link: http://dev.twitter.com/pages/oauth_single_token I had the same kind of issue, then I discovered Twitter Me API in Java, adapted slightly to my use case (in fact I'm going to rewrite an API based on this one) and did the authentication process entirely programmatically. T