[twitter-dev] NSURLConnection

2011-06-26 Thread R
Any opinions on which approach is better. NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:response

[twitter-dev] Twitter API changes

2011-06-26 Thread Ran Margaliot
Hello, Recently twitter has changed the access level that apps are getting to the user detail, an app need to mark that it needs access to the user's DMs in order to get it (unlike before), i have marked this option in my app settings page on twitter so i will have full data access for new users

[twitter-dev] OAuth IP Change Limited?

2011-06-26 Thread meaglith
I registed a Twitter application, and deployed with my website on a VPS run very well. When I chaged another VPS with new IP to deploy it, I got error within oauth process: *OAuth::Unauthorized (401 Unauthorized):* * * After I change back with old IP, it's good again. The register application

[twitter-dev] How do I get top tweets for certain hashtags to my websites?

2011-06-26 Thread Sushil Gupta
I want to make a website (my first project) that pulls the top tweets on twitter that are related to wisdom quotes and I want to put them into my website, one quote a day. I want to enable visitors to subscribe to get those quotes by email, sms, facebook updates, tweets on their accounts too.

Re: [twitter-dev] NSURLConnection

2011-06-26 Thread Evadne Wu
I am pretty sure you don’t want to use any synchronous requests, though. Better make an asynchronous one, and handle delegate method callbacks when they finish. Otherwise, if network flakes out, it can easily clog up everything for a minute or so, plus it’s just bad to write network code that

[twitter-dev] Public Time-Line Rate Limiting

2011-06-26 Thread AGurung
I am working on my dissertation to apply DM algorithms on public tweets. I wrote a Java application to grab the public timeline in xml format. My intention was to make the request from the Java thread after every 6 milliseconds (1 minute) to get a bunch of tweets for my dataset. But I missed

[twitter-dev] How to remove a tweet by URL

2011-06-26 Thread useto
Hi. I search how to remove a tweet with an URL with no success. I saw in github this code: $method = statuses/destroy/{$status-id}; twitteroauth_row($method, $connection-delete($method), $connection- http_code); So I made my url like this:

Re: [twitter-dev] Access tokens changing on their own?

2011-06-26 Thread Nicholas Chase
Then something is definitely broken; because I have not changed anything but the access tokens keep changing. Taylor? Matt? Arnaud? Thanks... Nick On 6/26/2011 1:50 AM, Scott Wilcox wrote: They'll only change when you reset your consumer key/secret and perhaps your account password

[twitter-dev] Re: A few updates about the permission model change

2011-06-26 Thread Aaron Rankin
Hi Matt, We missed the bit about having to use oauth/authorize and were going through oauth/authenticate. Via oauth/authorize it's working properly. Aaron On Jun 23, 6:57 pm, Matt Harris thematthar...@twitter.com wrote: Hi Aaron, I have't been able to reproduce this issue so could you email

[twitter-dev] Re: Twitter API error on my website

2011-06-26 Thread Mohan Arun
The Twitter API returned an error while processing your request. Please try again. Are you using a widget or you are using some custom code for feeding the tweets in your wordpress website? If you are using some widget, then most probably it will start working again after some time. Mohan --

Re: [twitter-dev] Twitter API changes

2011-06-26 Thread kamesh SmartDude
hi, the users who are already logged in should logout and relogin againotherswise they will not get any data(not only DM's) because u chaged the application settings(i found this issues in my app) //kamesh On Sun, Jun 26, 2011 at 6:42 PM, Ran Margaliot ran5...@gmail.com wrote: Hello,

[twitter-dev] GET statuses/retweets/:id

2011-06-26 Thread Chris Teso
The documentation at http://dev.twitter.com/doc/get/statuses/retweets/:id states it will return up to 100 of the first retweets of a given tweet. However, in practice the method seems to only return the recent Retweets for a given Tweet. Take these two urls: http://www.flickfolia.com/free shows

[twitter-dev] Re: GET statuses/retweets/:id

2011-06-26 Thread Chris Teso
Ah, ok. Seems you need to specify count param to be accurate. On Jun 26, 10:22 pm, Chris Teso christ...@gmail.com wrote: The documentation athttp://dev.twitter.com/doc/get/statuses/retweets/:id states it will return up to 100 of the first retweets of a given tweet. However, in practice the