[twitter-dev] Re: in_reply_to_status_id

2011-01-28 Thread Adam Duke
I was working with this api method today as well. What I found was that if your update's text does not contain an @reply to the user who created the status you are sending a reply to, Twitter seems to ignore the in_reply_to_status_id. I hope that helps. -Adam On Jan 28, 10:11 am, Rocker wrote: >

Re: [twitter-dev] Re: Net::Twitter::Lite cannot authenticate me

2011-01-28 Thread Patrick Kennedy
Sol, They do come from Twitter, but your program must retrieve the token and extract the access token and secret. If your program doesn't save them to variables or cookies, subsequent requests will fail, for example. You probably haven't probably retrieved them. That said, I am having problems

[twitter-dev] Re: Net::Twitter::Lite cannot authenticate me

2011-01-28 Thread Sol
Marc, Where do the access token and access token secret come from? I thought they cam from some computation that twitter does with the consumer key and consumer_secret. If they don't come from there then what do I do to generate/get them? Thanks very much. Sol On Jan 19, 9:20 am, Marc Mims wro

Re: [twitter-dev] Some Russian letters become garbage!

2011-01-28 Thread Taylor Singletary
This should work fine -- how are you %-encoding the UTF-8 characters in your POST body? For example, in your POST body it should look something like: > status=%d0%bf%d1%80%d0%be%d0%b2%d0%b5%d1%80%d0%ba%d0%b0 And in your signature base string: > POST&https%3A%2F%2Fapi.twitter.com > %2F1%2Fstatu

[twitter-dev] Some Russian letters become garbage!

2011-01-28 Thread zendocon
Most Russian letters are correct in my tweets, but for certain letters I get garbage... If I tweet this through my Twitter application: "испытания" I get this: "испÑ39Ñ1Aания" And if I tweet this: "проверка" I get this: "пÑACовеÑACка" Which is sent as UTF8: d0 bf d1 80 d0 be d0 b2 d0 b5 d1 80 d0

[twitter-dev] Updating status with a picture

2011-01-28 Thread nelrib
Hi, currently i am able to update my status through my twitter app. when updating with a link to an image i must click the link in twitter to view the image. what i wanted was to have the image popup in the right sidebar just like pictures from twitpic come up. just wondering if a domain must be

Re: [twitter-dev] SSL support for search API

2011-01-28 Thread fredp
Great - Thanks Matt! -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/gr

Re: [twitter-dev] Tweet button fails to parse URL - query strings beginning with & rather than ?

2011-01-28 Thread John Adams
On Fri, Jan 28, 2011 at 3:02 AM, JonM wrote: > The following URLs won't parse using the "tweet" button: > > "'url' parameter does not contain a valid URL." > > > http://www.pitchero.com/clubs/stockport/j/team-news-1249.html&news_id=247910 Well, that's not a valid URL. See the RFC. http://www.i

Re: [twitter-dev] SSL support for search API

2011-01-28 Thread Matt Harris
Hey, SSL is supported by Search. You can find the other API URLs and whether they support SSL or not in this thread: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/46ca6fcb9ea7eb49/f0f818daee475666 Best, @themattharris Developer Advocate, Twitter http://twitter.com/

[twitter-dev] SSL support for search API

2011-01-28 Thread fredp
Most of the posts I've read here indicate that the search API isn't available over SSL (apologies if I misread anything), but currently it seems like it is available to hit. Does anyone know if the search API over SSL is supported for general use? Example: https://search.twitter.com/search.json?q=

[twitter-dev] in_reply_to_status_id

2011-01-28 Thread Rocker
Hi all, I am trying to achieve the reply functionality of the twitter to a particular tweet(status) using the http://api.twitter.com/version/statuses/update.format url. In this i am passing in_reply_to_status_id parameter and include_entities=true to replay to a tweet. The status got updated but t

[twitter-dev] Tweet button fails to parse URL - query strings beginning with & rather than ?

2011-01-28 Thread JonM
The following URLs won't parse using the "tweet" button: "'url' parameter does not contain a valid URL." http://www.pitchero.com/clubs/stockport/j/team-news-1249.html&news_id=247910 I expect this is because the string has an ampersand "&" rather than a question mark "?" before the first GET vari