Re: [twitter-dev] Rate limit exceeded. Clients may not make more than 150 requests per hour

2011-07-04 Thread Correa Denzil
Please read the Rate Limiting documentation carefully. You need to make OAuth requests to increase your rate to 350 per hour. Whitelisting is no longer permitted. --Regards, Denzil On Mon, Jul 4, 2011 at 6:05 PM, Tushar wrote: > I am new to twitter API. > I am retrieving the tweets of a par

Re: [twitter-dev] Consumer Key and Secret is not Working

2011-07-04 Thread Correa Denzil
Post some code. --Regards, Denzil On Mon, Jul 4, 2011 at 1:05 PM, vicky bajaj wrote: > I have already have an application which is working for particular set > of Consumer Key and Secret, but due to unavailability of A/C > information I can't get the further details. So I have created one new

Re: [twitter-dev] Fetching a user's entire timeline

2011-07-04 Thread Correa Denzil
I am unable to reproduce the following error. I am able to paginate 200 tweets for 16 times. I am using OAuth for authentication. --Regards, Denzil On Mon, Jul 4, 2011 at 2:43 PM, Adriaan Pelzer wrote: > We realise that we're not supposed to get 3200 (but 3200 minus spammed > tweets), but we'

[twitter-dev] User suggestions and User Suggestions Twitter

2011-06-24 Thread Correa Denzil
Hi, I am unable to understand the API for user/suggestionsand user/suggestions/twitter resources. It would be great if you highlight two particular aspects : 1. What do these API calls si

Re: [twitter-dev] Poor documentation. For example, regarding lists. Suggestions for improvement.

2011-06-24 Thread Correa Denzil
Matt : I suggest in the "Example Requests" you add the URL for the call. It will prevent much of the "What URL to call?" queries. --Regards, Denzil On Fri, Jun 24, 2011 at 4:55 AM, Matt Harris wrote: > Hi Dave, > > Thanks for your feedback, it's important for us to know when developers are >

Re: [twitter-dev] get the profile of those who clicked the link on twitter

2011-06-08 Thread Correa Denzil
Cleimar : No, not possible. --Regards, Denzil On Thu, Jun 9, 2011 at 6:32 AM, Cleimar Vidal wrote: > would make such a script in php to get the User or the id of the twitter > profile to see as many times he visited my profile url? > -- Twitter developer documentation and resources: https:/

Re: [twitter-dev] get the profile of those who clicked the link on twitter

2011-06-08 Thread Correa Denzil
A hack around would be to distribute your profile link URL as goo.gl or bit.ly and get statistics from their respective APIs. --Regards, Denzil On Thu, Jun 9, 2011 at 1:24 AM, Nalin Savara wrote: > On Thu, Jun 9, 2011 at 1:14 AM, Cleimar Vidal > wrote: > > have any way of knowing who clicked

Re: [twitter-dev] rate limiting on users profile image

2011-06-08 Thread Correa Denzil
Matt : Can you also clear the air on what the snippet from the Twitter docs mean? I read it as there are no non-rate limited methods. http://dev.twitter.com/pages/rate-limiting#rest "API methods which are not directly rate limited are still subject to organic, unpublished limits. This includes a

Re: [twitter-dev] rate limiting on users profile image

2011-06-08 Thread Correa Denzil
DT : http://dev.twitter.com/pages/rate-limiting#rest "API methods which are not directly rate limited are still subject to organic, unpublished limits. This includes actions like publishing status updates, direct messages, follow/unfollow actions, etc. These Twitter Limits

Re: [twitter-dev] Twitter search API rate limit hit

2011-06-07 Thread Correa Denzil
--Regards, Denzil On Wed, Jun 8, 2011 at 1:47 AM, Orion Richardson wrote: > Hi all, > > I just built a new application which leverages the Twitter search API. > > Looks like I've been rate limited almost immediately... In my case, > I'm trying to search for URLs being tweeted and retweeted on

Re: [twitter-dev] Oauth Rate Limit 150 per hour?

2011-06-06 Thread Correa Denzil
urse). Line 22 all the way up to 35. > > Tom > > > On 6/6/11 5:38 PM, Correa Denzil wrote: >> >> Well, it turns out it's not the case. Both the points you mentioned >> weren't the issue as I see it. >> >> The issue was while I was creating

Re: [twitter-dev] Oauth Rate Limit 150 per hour?

2011-06-06 Thread Correa Denzil
te 'request' > > --Regards, > Denzil > > > > > On Mon, Jun 6, 2011 at 8:49 PM, Tom van der Woerdt wrote: >> >> On 6/6/11 5:10 PM, Correa Denzil wro > -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via

Re: [twitter-dev] Oauth Rate Limit 150 per hour?

2011-06-06 Thread Correa Denzil
11 at 8:49 PM, Tom van der Woerdt wrote: > > On 6/6/11 5:10 PM, Correa Denzil wro -- 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/lis

Re: [twitter-dev] Oauth Rate Limit 150 per hour?

2011-06-06 Thread Correa Denzil
Tom : Thanks for the reply. 1. You don't sign the test variable, you sign the URL variable, which isn't an endpoint. I have changed the same 2. You don't use the req variable to make the request, but instead you create a new connection which is completely unrelated to the signed request. I don'

Re: [twitter-dev] Oauth Rate Limit 150 per hour?

2011-06-06 Thread Correa Denzil
Is that Python? : Yes 1. You aren't signing using the proper url. Is the end point URL wrong? 2. You aren't using anything related to the signature on the request (req) I am a newbie to Python. I am trying to dabble using OAuth. I understand the OAuth flow but somehow what I am doing seems a bit

[twitter-dev] Oauth Rate Limit 150 per hour?

2011-06-06 Thread Correa Denzil
Hi, I am performing OAuth to sign my requests. I am not developing a web app. I am trying to harvest some user data. Here's what I do : import oauth2 as oauth import time CONSUMER_KEY = 'xx' CONSUMER_SECRET = 'xx' access_key = 'xx' access_secret_key = 'xxx

Re: [twitter-dev] Oauth in Twitter via Python

2011-06-04 Thread Correa Denzil
Tom : I probably missed the point. I see the targeted users, their data is public and accessible using no authentication but the API limits are too small. I can't gain OAuth access from them. I would like to increase this to more API calls using OAuth. --Regards, Denzil On Sun, Jun 5, 2011 at

Re: [twitter-dev] One access token for OAuth using Twitter API

2011-06-04 Thread Correa Denzil
uld suit that use case. > > On 4 Jun 2011, at 20:57, Correa Denzil wrote: > >> Hi, >> >> I would like to use a one access token with OAuth to make calls to the >> Twitter API. I am NOT trying to build a web application but rather >> trying to harvest data from

[twitter-dev] One access token for OAuth using Twitter API

2011-06-04 Thread Correa Denzil
Hi, I would like to use a one access token with OAuth to make calls to the Twitter API. I am NOT trying to build a web application but rather trying to harvest data from Twitter to perform some analysis. I would like to collect three types of data : followers, friends and user information includin

Re: [twitter-dev] Oauth in Twitter via Python

2011-06-04 Thread Correa Denzil
to use streams instead. > > Tom > > > On 6/4/11 7:53 PM, Correa Denzil wrote: >> >> Tom : >> >> Thanks. I will create multiple user accounts. I guess about 20 (350 * >> 20 = 7000 considering 1 request per second) should solve my issue. >> >> >&g

Re: [twitter-dev] Oauth in Twitter via Python

2011-06-04 Thread Correa Denzil
nto the 350 > requests. If you want 500, then perform 150 unauthenticated and 350 > authenticated. If you need even more, use more accounts to do the requests. > > Tom > > > On 6/3/11 11:06 PM, Correa Denzil wrote: >> >> Ah! I feel similar. >> >> Which ess

Re: [twitter-dev] Oauth in Twitter via Python

2011-06-03 Thread Correa Denzil
ading it it falls under 1. But I might be mistaken. > > --James Gifford > http://jamesrgifford.com > > On Jun 3, 2011, at 17:01, Correa Denzil wrote: > >> Hi, >> >> I am collecting Twitter data for my research. The API says that : >> >> [1] "Anon

[twitter-dev] Oauth in Twitter via Python

2011-06-03 Thread Correa Denzil
Hi, I am collecting Twitter data for my research. The API says that : [1] "Anonymous calls are based on the IP of the host and are permitted 150 requests per hour. This classification includes unauthenticated requests (such as RSS feeds), and authenticated requests to resources that do not requir

Re: [twitter-dev] Pagination using cursors to retrieve follower ID's

2011-06-02 Thread Correa Denzil
1: >   https://api.twitter.com/1/followers/ids.json?screen_name=ev&cursor=-1 > And step 2: >   https://api.twitter.com/1/followers/ids.json?screen_name=ev&cursor=1370145116766924316 > And so on. > @episod - Taylor Singletary > > > On Thu, Jun 2, 2011 at 1:53 PM, Correa De

Re: [twitter-dev] Pagination using cursors to retrieve follower ID's

2011-06-02 Thread Correa Denzil
sure that you're using cursor_str instead of "cursor" from the response > of these methods if you're making the requests in languages like Javascript > where the act of consuming the Integer representation truncates/malforms the > integer. Malformed cursors may be

[twitter-dev] Pagination using cursors to retrieve follower ID's

2011-06-02 Thread Correa Denzil
Hi all, The Twitter API mentions that in order to retrieve more than 5000 user followers one must set the cursor = -1 and use the next_cursor_str and previous_cursor_str options to paginate over the results. However, I observe that I am retrieved similar results(follower ids) on each pagination c