[twitter-dev] Re: Not able to connect to twitter through Google Appengine, getting Timeouts

2010-09-28 Thread nischalshetty
@John thanks a lot. 2 things : 1. Requests are still timing out though at a lesser rate, I guess this should die down in some time? 2. Can we prevent this from happening? I know apps from GAE end up misusing the API and your algo blocks the IP. But, won't you be able to whitelist the good apps?

Re: [twitter-dev] Re: Not able to connect to twitter through Google Appengine, getting Timeouts

2010-09-28 Thread John Adams
The way that Google App Engine handles outbound connections is that many applications share and reuse outbound IPs from a proxy pool. This makes rate limiting much harder and determination of where abuse is sourcing from difficult to determine. The request timing out issue you're experiencing

[twitter-dev] Re: Not able to connect to twitter through Google Appengine, getting Timeouts

2010-09-28 Thread nischalshetty
@John Thanks a lot for having a second look :) I'm still getting timeouts. I understand it's difficult for you guys to determine the rogue apps. But, won't you be able to like put a check where calls that have the consumer key and secret are all allowed? -N On Sep 28, 11:19 am, John Adams

[twitter-dev] Re: Not able to connect to twitter through Google Appengine, getting Timeouts

2010-09-28 Thread nischalshetty
@John I'm still getting a lot of errors :( My users have been mailing me about the same, please help me with this issue. -Nischal On Sep 28, 12:34 pm, nischalshetty nischalshett...@gmail.com wrote: @John Thanks a lot for having a second look :) I'm still getting timeouts. I understand it's

Re: [twitter-dev] not authorized over and over again

2010-09-28 Thread Tom van der Woerdt
If you save those four keys, you should have everything you need to restore the session. If this does not work for you, make sure that you save the keys properly. For example, you don't want to confuse oauth_token with oauth_consumer_key. Tom On 9/28/10 12:39 AM, eMailaya wrote: Im developing

[twitter-dev] /1/statuses/update.xml 401 error report

2010-09-28 Thread Double K
[ signature base string ] POSThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses %2Fupdate.xmloauth_consumer_key%3DUCYA7bKjiJr2hgR2Co3Yww%26oauth_nonce %3D1dcc43e0b00f1ca41fd4a3563100bf5d%26oauth_signature_method%3DHMAC- SHA1%26oauth_timestamp%3D1285642033%26oauth_token%3D98837972-

[twitter-dev] Email Validation Check

2010-09-28 Thread Devin Dixon
I already know that Twitter does not allow us to retrieve the users email when using OAuth. So on my site I am developing a feature where they have to validate their email before logging in. The problem I am foreesing is them not using the account associated with the Twitter address. So my

[twitter-dev] Re: Problem in posting image to Twitter using twitpic

2010-09-28 Thread sunil adhyaru
1) Header OAuth realm=, oauth_timestamp=1285656191, oauth_nonce=c09a1b4b650f4dcb509ae944a4324f5e0ab3b4ac, oauth_signature_method=HMAC-SHA1, oauth_consumer_key=pzHxyRZ7Mi8fNW25WTgCw, oauth_version=1.0, oauth_token=190978834-DomyKA0lL7apnNQt0r52Z2cg0afuwReiPYfYYDUT,

[twitter-dev] Callback URL for browser application type

2010-09-28 Thread Ashi
Hi, We are working on an applications using RIA clients like Flex and Silverlight and we have a workflow process in our application. When our workflow is approved/rejected we are notifying the user via twitter. If the user is redirected to twitter page for authentication, then the application

[twitter-dev] Screen_name vs ID for data storage

2010-09-28 Thread Markanday Singh
Is it possible that is some user will change his twitter handle, the older twitter handle might be alloted to some other user??? Let me explain you my problem now I am creating an app for twitter user, very similar to twitPic. (but not for image posting :P) Idea is i want to store some data

[twitter-dev] Twitter API - Sample PHP Script

2010-09-28 Thread Velvet
Hello, This is the first time I work on a API installation, Therefore be patient with me. I'm looking into installing a script on my website were it'll read an RSS file and periodically will send 3 or 4 records to twitter as a tweet. I already have the oauth keys. Is there a simple PHP code

[twitter-dev] 403'ed - Help, please

2010-09-28 Thread bombonia
Hi all, I've developed an app to tweet from my t-shirt everytime i hug and this past Sunday, after 200+ tweets while demoing it at Maker Faire NYC, it stopped updating hugs and I started getting the 403 in my processing script window added to the seconds the hug lasted. I am using the twitter4j

Re: [twitter-dev] Re: Problem in posting image to Twitter using twitpic

2010-09-28 Thread Tom van der Woerdt
Hi, You should check the algorithm that generates your oauth_signature. It doesn't look like that's a good one. Tom On 9/28/10 8:55 AM, sunil adhyaru wrote: 1) Header OAuth realm=, oauth_timestamp=1285656191, oauth_nonce=c09a1b4b650f4dcb509ae944a4324f5e0ab3b4ac,

Re: [twitter-dev] Callback URL for browser application type

2010-09-28 Thread Tom van der Woerdt
You can store them in a session/cookie, or simply ask them once they return. A good way to identify the session/cookie would be to use the temporary token which Twitter gives you on request_token. Tom On 9/28/10 9:30 AM, Ashi wrote: Hi, We are working on an applications using RIA clients

Re: [twitter-dev] Screen_name vs ID for data storage

2010-09-28 Thread Tom van der Woerdt
Yes, it is possible that screen_name gets used by a different user over time. Tom On 9/28/10 10:20 AM, Markanday Singh wrote: Is it possible that is some user will change his twitter handle, the older twitter handle might be alloted to some other user??? Let me explain you my problem now

Re: [twitter-dev] 403'ed - Help, please

2010-09-28 Thread Tom van der Woerdt
If the 403 is Administratively Forbidden, then you have been blacklisted. Quoting Taylor : The best way to inquire about specific blacklisting reasons is by sending an email to a...@twitter.com from the email address associated with a Twitter account. Include your IP address(es) and as much

[twitter-dev] How to make authentication

2010-09-28 Thread MC Coupons
Hi, I have developed a Perl script that automatically posts messages from my own website to twitter. The Perl script is running from Amazon EC server. The Perl script was used Net::Twitter module to post messages. It worked properly till 14th September 2010. But now it is not working. And it

Re: [twitter-dev] Twitter API - Sample PHP Script

2010-09-28 Thread Tom van der Woerdt
You could start with @Abraham's TwitterOAuth library: http://github.com/abraham/twitteroauth You don't need the whole code, just the library itself, and these 2 lines : $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET);

Re: [twitter-dev] How to make authentication

2010-09-28 Thread Tom van der Woerdt
Hi, More information about the change to OAuth : http://dev.twitter.com/announcements More information on how to get started : http://dev.twitter.com/pages/auth_overview Depending on your programming skills, you may like to use a library (or not). More info :

[twitter-dev] Need Help to developing Twitter Client

2010-09-28 Thread Peter Jerald
Hi All, I am peter, I am using QT Framework. I Planning to develop a Twitter client in QT. Is there any documentation is available ? or Please provide any hint to goahead with this development process. I am waiting for your valuable reply. Regards, A. Peter Jerald -- Twitter

Re: [twitter-dev] Need Help to developing Twitter Client

2010-09-28 Thread Tom van der Woerdt
I have no idea what QT is (QuickTime?), but depending on the programming language and your skills you may like these libraries : http://dev.twitter.com/pages/libraries If there is no library available, you will have to do the OAuth implementation yourself. The API itself is documented at

Re: [twitter-dev] Email Validation Check

2010-09-28 Thread Tom van der Woerdt
No, there is not. Why would it be important? Tom On 9/28/10 7:18 AM, Devin Dixon wrote: I already know that Twitter does not allow us to retrieve the users email when using OAuth. So on my site I am developing a feature where they have to validate their email before logging in. The problem I

[twitter-dev] twitter oauth command line

2010-09-28 Thread ashy
Hi All, I am using the following example in my django app to store users outhtoken into the db. http://github.com/henriklied/django-twitter-oauth But when Iam trying to use the oauth methods through commands http://docs.djangoproject.com/en/dev/howto/custom-management-commands/ it keeps giving

[twitter-dev] 'Incorrect signature' on status update with OAuth when verify credentials works

2010-09-28 Thread Angelus
Hi, since a few days ago, my status update calls have stopped working. They actually worked sometimes which made it even more strange. Recently I have found a thread with some1 with the same problem I had, and he tested the status update without accents or special characters, and it worked. So I

Re: [twitter-dev] Email Validation Check

2010-09-28 Thread Devin Dixon
To prevent a user form registerting to a site with an email that is not theres. On Tue, Sep 28, 2010 at 10:05 AM, Tom van der Woerdt i...@tvdw.eu wrote: No, there is not. Why would it be important? Tom On 9/28/10 7:18 AM, Devin Dixon wrote: I already know that Twitter does not allow us

Re: [twitter-dev] Need Help to developing Twitter Client

2010-09-28 Thread CWorster
Hi,  I am peter, I am using QT Framework. Do you mean Trolltech's Qt (lowercase t)? If yes, for the OAuth dance: http://qt-apps.org/content/show.php/QOAuth?content=107420 -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter:

[twitter-dev] Comparing Friendship

2010-09-28 Thread Rick Stuivenberg
Hello, What are the oauth functions to check if somebody is following me or not? I am currently making a script to check up if a user is following me, and if so, following them back, and if not, unfollow the user. Can somebody give me a point in the direction what oauth functions I need? btw; I

[twitter-dev] Re: 'Incorrect signature' on status update with OAuth when verify credentials works

2010-09-28 Thread Angelus
After some try and fail I finally discovered I needed a utf8_encode in the status otherwise twitter responded with the incorrect signature. Hope this helps if anyone is having the same problem. On Sep 28, 11:14 am, Angelus luiz.felipe...@gmail.com wrote: Hi, since a few days ago, my status

Re: [twitter-dev] Twitter API - Sample PHP Script

2010-09-28 Thread Scott Wilcox
Hi, Take a look at http://github.com/dordotky/oauth-examples I've got a few sample scripts there. Scott. On 28 Sep 2010, at 13:42, Velvet wrote: Hello, This is the first time I work on a API installation, Therefore be patient with me. I'm looking into installing a script on my website

[twitter-dev] using twitter4j and Oauth. Getting 403 (for an art related app) after the 200+ tweets

2010-09-28 Thread bombonia
Dear developers, I have developed an app for a wearable that tweets the meaning of hugs to my @bomboniahugs account. After I updated my processing code with the new API tokens and secrets I was able to demo it at Maker Faire with no problem for about 200+ hugs in a couple of days. After that I

[twitter-dev] Re: 403'ed - Help, please

2010-09-28 Thread bombonia
Thank you Tom, That is what I was afraid of, but why? what am I doing that should be blacklisted? it is a simple and fun app that i demo 2-3 times a year. oh well. i have to fix that. maybe i should do it in a new twitter account? On Sep 28, 9:59 am, Tom van der Woerdt i...@tvdw.eu wrote: If

[twitter-dev] Re: Not able to connect to twitter through Google Appengine, getting Timeouts

2010-09-28 Thread nischalshetty
It's been a long time, I'm completely helpless in this. Please look into it soon and help me out, I have thousands of users who visit the site everyday, been receiving a lot of mails and tweets regarding the errors. -Nischal On Sep 28, 1:41 pm, nischalshetty nischalshett...@gmail.com wrote:

Re: [twitter-dev] Need Help to developing Twitter Client

2010-09-28 Thread Peter Jerald
Hi, Sorry i did mistake, Thanks for your valuable reply. Yes of course Qt (C++ Framework) , Please provide more information to develop the process. Regards, A. Peter Jerald On 9/28/10, CWorster cwors...@schlimmer.com wrote: Hi, I am peter, I am using QT Framework. Do

[twitter-dev] Re: Comparing Friendship

2010-09-28 Thread Ken D.
Hey Rick, It's the second time in a week that someone brings up the autofollow/ unfollow question (see also: http://groups.google.com/group/twitter-development-talk/msg/b7b1dfbf6500ab83) and I would love to understand the follow economy once and for all. First of all, you say that if someone is

[twitter-dev] Re: not authorized over and over again

2010-09-28 Thread eMailaya
im doing the following: Twitterh.Key := consumer key - hard coded Twitterh.Secret := consumer secret - hard coded Twitterh.OAuth_token := SettingsFile.ReadString('TWITTER','TOKEN',''); //saved from when i got the authorization from the user Twitterh.OAuth_token_secret :=

Re: [twitter-dev] Re: Comparing Friendship

2010-09-28 Thread M. Edward (Ed) Borasky
Quoting Ken D. k...@cimas.ch: Hey Rick, It's the second time in a week that someone brings up the autofollow/ unfollow question (see also: http://groups.google.com/group/twitter-development-talk/msg/b7b1dfbf6500ab83) and I would love to understand the follow economy once and for all.

[twitter-dev] Re: Comparing Friendship

2010-09-28 Thread Rick Stuivenberg
On 28 sep, 16:44, Taylor Singletary taylorsinglet...@twitter.com wrote: In PHP twitteroauth, this would probably be something like: $content = $connection-get('friendships/show', array('source_screen_name'='episod', 'target_screen_name'='twitterapi')); Yes. That would be something like that.

[twitter-dev] Re: using twitter4j and Oauth. Getting 403 (for an art related app) after the 200+ tweets

2010-09-28 Thread bombonia
Thank you for getting back. I don't get any error message, just the 403 added to the number of seconds that my processing code tracks. the 200+ was in a 2 days time frame. Twitter's limit is way about that. the tweets are very similar, because they are all about hugs, but i had conveniently

Re: [twitter-dev] Re: using twitter4j and Oauth. Getting 403 (for an art related app) after the 200+ tweets

2010-09-28 Thread Taylor Singletary
I recommend following up with a...@twitter.com providing them as much information as you can -- including all IP addresses you are issuing requests from. There may be more of an error message in the 403 you are receiving, but your libraries/framework/programming language may be making it

[twitter-dev] User Streams goes Production, Site Streams adds Home Timelines

2010-09-28 Thread John Kalucki
User Streams = After an uneventful beta test period, the User Streams feature of the Twitter Streaming API is now in regular production. As with all production APIs, material changes will be pre-announced and non-backward-compatible changes will be avoided. Developers may release products

[twitter-dev] New Tweet button, counturl, and searches

2010-09-28 Thread Adam
I am attempting to implement the Tweet button on a blog network and have run into an annoying problem. Like pretty much every other blog, we're using a URL shortener (bit.ly Pro, with the domain sbn.to) for our tweets. The tweet button correctly increments for every time it is pressed, but when

[twitter-dev] Re: User Streams goes Production, Site Streams adds Home Timelines

2010-09-28 Thread Dharmesh
This is awesome. Anyone have a simple PHP example yet of working with User Streams? (Just want to use it for myself for now, to get familiar with it). Thanks. Dharmesh Shah http://twitter.com/dharmesh On Sep 28, 3:04 pm, John Kalucki j...@twitter.com wrote: User Streams = After an

[twitter-dev] Please remove from blacklist

2010-09-28 Thread Kiam
Hi, We had two IP's that were whitelisted, but they recently became blacklisted. I see: # curl -v -u myusername:mypassword 'http://stream.twitter.com/1/ statuses/sample.xml' * About to connect() to stream.twitter.com port 80 (#0) * Trying 168.143.162.55... Connection refused * couldn't

[twitter-dev] Re: How to tell an item is a re-tweet?

2010-09-28 Thread tm0054
UPDATE: I found this page that would indicate that the retweet field is currently disabled and suggests another way to see if something has been retweeted: http://www.devcomments.com/retweeted-variable-in-home-timeline-at288280.htm On Sep 20, 2:01 pm, Matei mad.doroba...@gmail.com wrote: Hi

[twitter-dev] Re: How to tell an item is a re-tweet?

2010-09-28 Thread tm0054
I'm wondering the exact same thing. One would thing the 'retweet' field would indicate this but it is false all the time for me too regardless if a post has been retweeted or not. It would be very confusing to the end user if they still have the ability to retweet a post that they've already

[twitter-dev] Re: Please remove from blacklist

2010-09-28 Thread Rick Stuivenberg
Are you getting any http reason returned? It is olso a good thing to check the Pre-launch Checklist in order to be sure that you got everything right before asking to be unbanned: http://dev.twitter.com/pages/streaming_api On 28 sep, 22:13, Kiam kiamc...@gmail.com wrote: Hi, We had two IP's

Re: [twitter-dev] Please remove from blacklist

2010-09-28 Thread Taylor Singletary
Hi Kiam, To contest being banned, please email a...@twitter.com with the IP addresses in question, why you think you've been banned, and what you've done to rectify the situation. This way the team best equipped to resolve your ban will receive the message. Thanks, Taylor On Tue, Sep 28, 2010

[twitter-dev] Re: User Streams goes Production, Site Streams adds Home Timelines

2010-09-28 Thread John Kalucki
Correction: The endpoint is https://userstream.twitter.com/2/user.json. User Streams is HTTPS only. On Tue, Sep 28, 2010 at 12:04 PM, John Kalucki j...@twitter.com wrote: User Streams = After an uneventful beta test period, the User Streams feature of the Twitter Streaming API is now in

[twitter-dev] Streaming API test: Adding new_id field to statuses at 17:00 UTC Sept 29

2010-09-28 Thread John Kalucki
Tomorrow, Wednesday September 29, at 10:00 AM PDT / 17:00 UTC, we will briefly introduce a field called new_id to statuses delivered over the Streaming API. If this 10 minute test is successful, we will enable the new_id field continuously on Thursday September 30th at about the same time. Note

[twitter-dev] Re: Invalid / expired Token

2010-09-28 Thread Rajendra Singh
Help anyone? On Sep 6, 7:16 pm, Rajendra Singh rs.can...@gmail.com wrote: Hi Tom, Yes I did fill in those values correctly. On Sep 6, 5:44 pm, Tom van der Woerdt i...@tvdw.eu wrote: On 9/6/10 10:57 PM, Rajendra Singh wrote: Hello, I took the twoleggedtwitter.php example file and

Re: [twitter-dev] Re: Invalid / expired Token

2010-09-28 Thread BJ Weschke
Are you certain that you're using the access token and secret received and not the request token and secret? Rajendra Singh wrote: Help anyone? On Sep 6, 7:16 pm, Rajendra Singh rs.can...@gmail.com wrote: Hi Tom, Yes I did fill in those values correctly. On Sep 6, 5:44 pm, Tom van der

[twitter-dev] Re: Invalid / expired Token

2010-09-28 Thread Rajendra Singh
Hi BJ, Here is the complete code: include_once oauth-php/library/OAuthStore.php; include_once oauth-php/library/OAuthRequester.php; // register at http://twitter.com/oauth_clients and fill these two define(TWITTER_CONSUMER_KEY, ); // I removed this for this post define(TWITTER_CONSUMER_SECRET,

[twitter-dev] Getting 500:Something is broken

2010-09-28 Thread nischalshetty
For many API calls (retrieving friend Ids, follower Ids) I'm getting 500:Something is broken. Please post to the group so the Twitter team can investigate. as error message. Is the twitter API having problems? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API

[twitter-dev] Re: What happens after twitter user denied access to the application?

2010-09-28 Thread K
Exact info I needed. Thanks for clarification! K On Sep 7, 7:02 am, jaronbarends jaronbare...@gmail.com wrote: When a user denies your app access, it says something like you denied YourAppName access... The text YourAppName is a link, and when the users clicks that, he gets redirected to your

[twitter-dev] Re: Behavior when user denies access from application

2010-09-28 Thread K
This was the exact info I needed. Thanks! On Sep 27, 9:47 pm, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Kutsumi, You are correct in assessing the current behavior -- we'll return to your callback URL if they hit deny. In that case, we'll also NOT be sending you an

[twitter-dev] Re: @anywhere login contains unsecure content -- please help

2010-09-28 Thread ManuelZ
Done. Ticket: http://code.google.com/p/twitter-api/issues/detail?id=1903 -- 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

Re: [twitter-dev] Re: Problem in posting image to Twitter using twitpic

2010-09-28 Thread Matt Harris
Hey Sunil. Just to add to this, the signature string contains a period '.' which isn't part of the Base64 alphabet. Double check you are base64 encoding the hmac_sha1 signed basestring. In the Authorization header that would then be URL encoded, leaving a string that looks something like this:

[twitter-dev] @Anywhere Typo (Minor)

2010-09-28 Thread Mike
Under Users login signup Custom Connect with Twitter Button it reads: If the default look and feel of the Connect with Twitter button don't meet your needs, @Anywhere makes it easy to build a custom button. I believe it should be buttons don't or button doesn't. :) -- Twitter developer

Re: [twitter-dev] Re: Not able to connect to twitter through Google Appengine, getting Timeouts

2010-09-28 Thread Matt Harris
Are you still experiencing problems? We've checked our systems and have checked GAE isn't blocked. Best, @themattharris On Sep 28, 2010, at 9:23, nischalshetty nischalshett...@gmail.com wrote: It's been a long time, I'm completely helpless in this. Please look into it soon and help me out, I

[twitter-dev] Re: Not able to connect to twitter through Google Appengine, getting Timeouts

2010-09-28 Thread nischalshetty
@Matt thanks a lot. Not seeing the timeouts any more. 500s are everywhere but I understand from your status blog it's a known thing. Thanks for all the help. Over the Appengine group, we've been discussing about IP blocking for cloud offerings like GAE. Would you be able to help with this?

Re: [twitter-dev] Re: @anywhere login contains unsecure content -- please help

2010-09-28 Thread Matt Harris
Thanks On Tue, Sep 28, 2010 at 5:31 PM, ManuelZ manuel.zahar...@hotmail.com wrote: Done. Ticket: http://code.google.com/p/twitter-api/issues/detail?id=1903 -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] Re: URL encoding of status= parameter in #newtwitter

2010-09-28 Thread Pat Diven II
Hey Jonathan, how's the Mission? Figures that I'd find a thread started by you for the same issue we're also having. :) So yes, we're also getting bit by the same issue. One thing I noticed on #newtwitter is that the encoding is mangled during a redirect (from /home?status= to /?status=):

[twitter-dev] Re: URL encoding of status= parameter in #newtwitter

2010-09-28 Thread Jonathan Strauss
Heh, thanks Pat! That was on my To Do list for tonight, I swear :-) On Sep 28, 9:04 pm, Pat Diven II p...@addtoany.com wrote: Hey Jonathan, how's the Mission? Figures that I'd find a thread started by you for the same issue we're also having. :) So yes, we're also getting bit by the same

[twitter-dev] Re: User Streams goes Production, Site Streams adds Home Timelines

2010-09-28 Thread Michael Ledford
On Sep 28, 3:04 pm, John Kalucki j...@twitter.com wrote: Site Streams and User Streams now support the with parameter to control the delivery of home timelines. This parameter currently accepts two values: users or followings. Is it possible to get both users and followings at the same time?

Re: [twitter-dev] Re: User Streams goes Production, Site Streams adds Home Timelines

2010-09-28 Thread John Kalucki
Followings is additive to the Users. You can observe the behavior of these settings on userstream.twitter.com. -John Kalucki http://twitter.com/jkalucki Twitter, Inc. On Tue, Sep 28, 2010 at 9:10 PM, Michael Ledford mledf...@gmail.com wrote: On Sep 28, 3:04 pm, John Kalucki j...@twitter.com

[twitter-dev] @Anywhere OAuth Question

2010-09-28 Thread Mike
Hello, I've created a full feature app using twitteroauth PHP library found on GitHub, and know most calls like the back of my hand.. haha. I was looking into using the @Anywhere javascript library, and watched the slideshow from a workshop presented by @themattharris, so I seen how to pass the

[twitter-dev] Registered users on twitter date-wise

2010-09-28 Thread rajiv74
Hi, Can I get the list of registered users on twitter date-wise using twitter api? Thanks, Rajiv -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: