[twitter-dev] abrahams twitteroauth issue

2010-06-25 Thread Rick
Howdy! I am currently making my application OAuth compatible from basic auth, currently I have a issue I need to get resolved in order to switch to the new OAuth method. I am getting my followers from: $oauth-get('statuses/followers'); but that only gives me the last 100 followers, I trought it

[twitter-dev] Re: Delete List Member + OAuth Authorization

2010-06-25 Thread Milen
On Jun 24, 5:20 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Milen, When you're using a DELETE HTTP method, are you sending the id=12345 parameter on the query string or in a POST body? It should be in the query string. There's some contention in the universe on whether

[twitter-dev] Re: abrahams twitteroauth issue

2010-06-25 Thread Sam Wierema
You should not increment your cursor, because Twitter returns a cursor for you. And if cursor is 0, it means that there are no more pages (-1 + 1 = 0). Check your $followers variable that you got from the first call. It should be called something like next_cursor. On Jun 25, 2:26 pm, Rick

[twitter-dev] Looking for Twitter Corpus With Geo-location Information.

2010-06-25 Thread elahi
1. I m looking for Twitter Corpus for Geo-location with geo-location information. I m analyzing culture of Twitter Users in my Master Thesis. The idea is to use the terms used by in indians and amercians in Tweets. Is there any Twitter Corpus with Geo-location Information? Mohammad Fazleh Elahi

[twitter-dev] Re: 404 Problem 3 day

2010-06-25 Thread iLyas
thank you Taylor I'm use this http://api.twitter.com/1/statuses/home_timeline.json;

[twitter-dev] i want develop one application in symbian c++ which will send message to twitter

2010-06-25 Thread rahul makode
Hi all, i want to develop one application in symbian c++ which will send message to twitter user but there is no support for c++ directly what do i suppose to do Thanks in advance bye

Re: [twitter-dev] Re: 404 Problem 3 day

2010-06-25 Thread Taylor Singletary
And are you sure you're getting a 404 and not some other error code? On Fri, Jun 25, 2010 at 4:02 AM, iLyas ilyas.osmano...@gmail.com wrote: thank you Taylor I'm use this http://api.twitter.com/1/statuses/home_timeline.json;

[twitter-dev] Re: Link Wrapping and Favorites

2010-06-25 Thread Georgios
Hi Taylor Thanks for looking into the favorites problem. Can you please update this thread once this is resolved so we can test and update our code. Cheers Georgios On Jun 24, 8:14 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: The Search API is a much bigger fish to fry :) Rest

Re: [twitter-dev] Re: Link Wrapping and Favorites

2010-06-25 Thread Taylor Singletary
Will do my best to remember to update the thread, but can't really offer a timeline at the moment as to when we'll have the code in place for this. Thanks for being patient! Taylor On Fri, Jun 25, 2010 at 6:47 AM, Georgios kapero...@gmail.com wrote: Hi Taylor Thanks for looking into the

[twitter-dev] Re: abrahams twitteroauth issue

2010-06-25 Thread Rick
Thank you for your reply. I don't use next_cursor or whatsoever. I just use the $followers variable to use count it with $totaal = count($followers); so I can use it in my code. The cursor code I posted before is the only thing I use to try and get information. Is it even possible to get all the

Re: [twitter-dev] Looking for Twitter Corpus With Geo-location Information.

2010-06-25 Thread M. Edward (Ed) Borasky
Quoting elahi mohammadfazlehel...@gmail.com: 1. I m looking for Twitter Corpus for Geo-location with geo-location information. I m analyzing culture of Twitter Users in my Master Thesis. The idea is to use the terms used by in indians and amercians in Tweets. Is there any Twitter Corpus with

[twitter-dev] Re: Streaming API OAuth explanation?

2010-06-25 Thread Wil
Hi, Sorry it took me a while since I'm using TweetSharp and am stepping through the (unfamiliar) code. The moment you said about the signature, I'm suspecting that the problem is somewhere with that. However, I got this: POSThttp%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses

[twitter-dev] Re: Streaming API OAuth explanation?

2010-06-25 Thread Wil
Hi John, Uhh, care to elaborate? I don't quite get what you meant... Thanks, Wil On Jun 24, 11:17 pm, John Kalucki j...@twitter.com wrote: Aside from the oAuth issue, which others can address, the only valid delimited value is length. -John On Thu, Jun 24, 2010 at 7:58 AM, Wil

[twitter-dev] Cannot update status with Twitter PHP Library

2010-06-25 Thread Straube
Hi, I'm trying to update an account status with the Abraham's PHP Library, but I'm getting the following exception message: Bad request / Your browser sent a request that this server could not understand. I've already authorized my application to connect with my test account and I saved the

[twitter-dev] Re: Hashtags in prepopulated status's when the user was not logged in

2010-06-25 Thread DiegoVic
Hi Matt, We´re with the same problem. Look: http://twitter.com/home?status=Brasil%20avan%C3%A7a%20em%20primeiro%2C%20mas%20joga%20mal%20e%20irrita%20Dunga%20http%3A%2F%2Fbit.ly%2F9U4ax6%20%23terra There´s a problem only when the user was not logged in. Tks a lot. On Jun 22, 3:56 pm, Matt Harris

Re: [twitter-dev] Re: Hashtags in prepopulated status's when the user was not logged in

2010-06-25 Thread Matt Harris
Thanks, we've filed this internally. You can follow progress on the bug through http://code.google.com/p/twitter-api/issues/detail?id=1706 Matt On Fri, Jun 25, 2010 at 11:16 AM, DiegoVic diego...@gmail.com wrote: Hi Matt, We´re with the same problem. Look:

[twitter-dev] Multiple Resutls for Twitter Place IDS

2010-06-25 Thread ELB
I notice that in the example of the Staples Center in Los Angeles, the best choice for Staples Center is the second result. We would like to automate our script; do you have any suggestions for determining in code which of the 5 responses is best? Meaning, for a given venue, Twitter has

Re: [twitter-dev] Multiple Resutls for Twitter Place IDS

2010-06-25 Thread Matt Harris
Thanks for the question. The geo docs are being updated at the moment and we've noticed various bits of them have gone missing, including search. We're looking into why that is at the moment. You can directly access the information on the method by visiting:

[twitter-dev] Re: abrahams twitteroauth issue

2010-06-25 Thread Sam Wierema
Yes, it's very possible. Haven't tested it, but it should be something like this: $cursor = -1; while( $cursor !== 0 ) { $info = $oauth-get( 'statuses/followers', array( 'cursor' = $cursor ) ); if( $oauth-http_code === 200 !isset( $info-error ) ) { // Count or whatever here

[twitter-dev] Re: Cannot update status with Twitter PHP Library

2010-06-25 Thread Sam Wierema
If you're using Abraham's library you should drop the .json and the first slash in the call: $return = $twitter-post( 'statuses/update', array( 'status' = 'TEST' ) ); If you're using EpiTwitter (not Abraham's library) you should probably use something like this (according to this:

[twitter-dev] Transitioning from Basic Auth to OAuth Guide (need your help!)

2010-06-25 Thread Taylor Singletary
Hi Everyone, We've started putting together a document that goes through many of the things developers need to know about transitioning from Basic Auth to OAuth (as opposed to coming to OAuth without having the history of basic auth behind them). You can find this guide here:

Re: [twitter-dev] Re: Streaming API OAuth explanation?

2010-06-25 Thread Taylor Singletary
Wil, Does your OAuth code work against other aspects of the Twitter API? Can you verify if your system's clock is within 5 minutes or so of the times returned by our system? (You can see the current server time in an HTTP header of any of our responses). Are you sure that your code is actually

Re: [twitter-dev] Transitioning from Basic Auth to OAuth Guide (need your help!)

2010-06-25 Thread Andrew W. Donoho
On Jun 25, 2010, at 15:42 , Taylor Singletary wrote: However, we'd love to collect together specific implementation stories of developers who've successfully made the transition and highlight them here. Taylor et. al., As someone with his own custom iPhone REST stack, I scaled

[twitter-dev] Re: Cannot update status with Twitter PHP Library

2010-06-25 Thread Straube
I think I'm doing some confusion with the libraries. I'm using EpiTwitter. :S But even though I use the method post_statusesUpdate(), the server response is the same: bad request. I've commented the line 148, in EpiOAuth.php, 'cause I was getting a PHP warning: curl_setopt($ch,