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 vicky.baja...@gmail.com 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

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 gandhi.t...@gmail.com wrote: I am new to twitter API. I am retrieving

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 thematthar...@twitter.comwrote: Hi Dave, Thanks for your feedback, it's important for us to know

[twitter-dev] User suggestions and User Suggestions Twitter

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

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

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

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 nsn...@gmail.com wrote: On Thu, Jun 9, 2011 at 1:14 AM, Cleimar Vidal cleimarvi...@hotmail.com wrote:

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 cleimarvi...@hotmail.comwrote: 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

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 ori...@gmail.com 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

[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 =

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

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

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

2011-06-06 Thread Correa Denzil
...@tvdw.eu 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/list Change your membership

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

2011-06-06 Thread Correa Denzil
at 8:49 PM, Tom van der Woerdt i...@tvdw.eu 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

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

2011-06-06 Thread Correa Denzil
). 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 the client I wasn't supplying the token. Check Line 20 in the gist. https

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

2011-06-04 Thread Correa Denzil
) will go into 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 essentially means that despite acquiring data which

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

2011-06-04 Thread Correa Denzil
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. --Regards, Denzil On Sat, Jun 4, 2011 at 3:35 AM, Tom van der Woerdti...@tvdw.eu  wrote

[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

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

2011-06-04 Thread Correa Denzil
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 to perform some analysis. I would like

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

[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

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

2011-06-03 Thread Correa Denzil
: The way I'm reading it it falls under 1. But I might be mistaken. --James Gifford http://jamesrgifford.com On Jun 3, 2011, at 17:01, Correa Denzil mcen...@gmail.com wrote: Hi, I am collecting Twitter data for my research. The API says that : [1] Anonymous calls are based on the IP

[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

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

2011-06-02 Thread Correa Denzil
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 the cause of your duplicated data. @episod - Taylor Singletary On Thu, Jun 2, 2011 at 1:11 PM, Correa Denzil mcen

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

2011-06-02 Thread Correa Denzil
://api.twitter.com/1/followers/ids.json?screen_name=evcursor=-1 And step 2:   https://api.twitter.com/1/followers/ids.json?screen_name=evcursor=1370145116766924316 And so on. @episod - Taylor Singletary On Thu, Jun 2, 2011 at 1:53 PM, Correa Denzil mcen...@gmail.com wrote: Taylor : Thanks