[twitter-dev] Re: xauth help for: 'failed to validate oauth signature and token'

2010-09-27 Thread Tom van der Woerdt
Hi Doug, The only thing I can think of is that you aren't sending an Authorization: header that starts with OAuth. Tom On Sep 26, 10:30 pm, Doug doug_d...@yahoo.com wrote: Hi folks, I have been banging my head against the wall trying to figure out why I keep getting 'failed to validate

[twitter-dev] Re: TwitterOAuth

2010-09-27 Thread Rick
Hello Abraham, I still have some issues. May I polite ask If I may e-mail you to send you a script where I am stuck in for the last 5 weeks.. Thanks. On 27 sep, 00:00, Abraham Williams 4bra...@gmail.com wrote: This should do what you need:http://gist.github.com/598349 Abraham -

[twitter-dev] Streaming API question..

2010-09-27 Thread omri
hi there, I am using the streaming API (the statuses/filter), and I get a lot of tweets in spanish. I wanted to know if there is a way to get results only in English? I tried to use the geo-location of the USA only, but it didn't help much. anybody? thanks, Omri -- Twitter developer

[twitter-dev] xAuth - sometimes Error with StatusCode 401, sometimes Response with StatusCode 200

2010-09-27 Thread andy
Hello, I using xAuth for an Flash-Application. I have written in the group Twitter Development Group already several entries, as there was problems to use xauth. I currently have an application that works half way. The problem is that I sometimes get a response with a HTTP- StatucCode of 200 and

Re: [twitter-dev] xAuth - sometimes Error with StatusCode 401, sometimes Response with StatusCode 200

2010-09-27 Thread Tom van der Woerdt
401 is a general HTTP error code. The message is more important. If the message is about an invalid nonce, then you should check the timestamp. If it's about a nonce that had already been used, check the nonce. If it's a signature error, check the code that generates the signature and make sure

[twitter-dev] How to read twitter feeds C#

2010-09-27 Thread jhelyn suan
I used the code below to get the user timeline however when it reach to XElement.Load it has an error The remote server returned an error: (400) Bad Request. var url = http://twitter.com/statuses/user_timeline/; + User + .rs var element = XElement.Load(url); -- Twitter developer documentation

[twitter-dev] Authorization Failed

2010-09-27 Thread Maanu
Hi, I am using Twitterizer.Framework.dll. For my website, I need to post twits on particular user's twitter account. For that, users provide their log in information and using the below code, it updates the twitter. Twitter twitter = new Twitter(txtUserName.Text, txtPassword.Text);

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

2010-09-27 Thread sunil adhyaru
Hi I am using following code to post image to Twitter using twitpic. But I am getting server response code 401 for the same. ASIFormDataRequest *req = [[ASIFormDataRequest alloc] initWithURL: [NSURL URLWithString:@http://api.twitpic.com/2/upload.json;]]; [req

[twitter-dev] Twitter Oauth Realization within an SAP CRM system

2010-09-27 Thread Andyiz
Hello Dev, - We are creating Twitter demo from a SAP CRM system. - With basic authentication everything worked fine. - Now we tried to create an own OAuth client for Twitter with SAP’s programming language ABAP. - We have registered the following (browser) application:

[twitter-dev] xAuth problem with using filter streams

2010-09-27 Thread Shinpei Ohtani
Hi all, I got xAuth problem using filter streams. My simple code has been doing fine before September(just logging). But there is something changed after sometime in September, the same code is forbidden(403) by Twitter. I processed xAuth authentication at July, and my code has been doing great

Re: [twitter-dev] Twitter Oauth Realization within an SAP CRM system

2010-09-27 Thread Tom van der Woerdt
Hi, The Base String looks fine, so does the Authorization header and the signature. What is the error you get back? Not just the error number (probably 401), but also the message. Tom On Mon, 27 Sep 2010 02:34:06 -0700 (PDT), Andyiz mailanand@gmail.com wrote: Hello Dev, - We are

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

2010-09-27 Thread Tom van der Woerdt
Hi, Code looks fine. Can you show a dump of a request? (Request headers + Request body + Response body) Tom On Mon, 27 Sep 2010 05:38:55 -0700 (PDT), sunil adhyaru sunil.adhy...@gmail.com wrote: Hi I am using following code to post image to Twitter using twitpic. But I am getting server

Re: [twitter-dev] Authorization Failed

2010-09-27 Thread Tom van der Woerdt
Hi, You should read this page : http://dev.twitter.com/announcements Basic Auth is no longer supported since September 1st. You should now use OAuth. Tom On Mon, 27 Sep 2010 04:50:18 -0700 (PDT), Maanu mansi.s...@etatvasoft.com wrote: Hi, I am using Twitterizer.Framework.dll. For my

Re: [twitter-dev] xAuth problem with using filter streams

2010-09-27 Thread Tom van der Woerdt
Hi, The 403 error can mean a lot of things. Can you give us the error message itself, instead of what Twitter4j gives you? Tom On Mon, 27 Sep 2010 19:03:58 +0900, Shinpei Ohtani shinpei.oht...@gmail.com wrote: Hi all, I got xAuth problem using filter streams. My simple code has been doing

[twitter-dev] Re: xauth help for: 'failed to validate oauth signature and token'

2010-09-27 Thread mlowicki
In the last post from http://groups.google.com/group/twitter-development-talk/browse_thread/thread/51f25b873868e920/9babee82d344f7ee?lnk=gstq=failed+to+validate+oauth+signature+and+token#9babee82d344f7ee there is code which works for me. Maybe it'll help On Sep 26, 10:30 pm, Doug

Re: [twitter-dev] xAuth problem with using filter streams

2010-09-27 Thread John Kalucki
The reason text was enclosed. It says 403 - Administratively Forbidden. You've been blacklisted, almost certainly for violating the API policy. -John Kalucki http://twitter.com/jkalucki Twitter, Inc. On Mon, Sep 27, 2010 at 6:06 AM, Tom van der Woerdt i...@tvdw.eu wrote: Hi, The 403 error

Re: [twitter-dev] xAuth problem with using filter streams

2010-09-27 Thread Shinpei Ohtani
Thanks for notifying me. Is there any specific documents what causes banned my account? I must read the docs carefully now. I found this one: http://dev.twitter.com/pages/api_faq#wrong Any other documents? Thanks in advance. On Mon, Sep 27, 2010 at 10:19 PM, John Kalucki j...@twitter.com

Re: [twitter-dev] xAuth problem with using filter streams

2010-09-27 Thread Shinpei Ohtani
Hi Tom, Thanks for reply. The error message from Twitter says Administratively forbidden\n, that's all. This message is not from Twitter4j, Twitter tells it as response body. Thanks, On Mon, Sep 27, 2010 at 10:06 PM, Tom van der Woerdt i...@tvdw.eu wrote: Hi, The 403 error can mean a lot of

Re: [twitter-dev] xAuth problem with using filter streams

2010-09-27 Thread Taylor Singletary
Hi Shinpei, 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 information about what API operations you've been making and at what frequency.

Re: [twitter-dev] xAuth problem with using filter streams

2010-09-27 Thread Shinpei Ohtani
Taylor, Thanks for the answer. These resources are helpful to me, and I send email to a...@twitter.com, and wait and see what's going on. Thanks for the help. On Mon, Sep 27, 2010 at 11:05 PM, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Shinpei, The best way to inquire about

Re: [twitter-dev] Authorization Failed

2010-09-27 Thread Taylor Singletary
Twitterizer is an actively maintained Twitter library that supports OAuth authentication now. You can read about implementing it here: http://www.twitterizer.net/tutorials/getting-started-with-oauth/ Good luck! Taylor On Mon, Sep 27, 2010 at 6:04 AM, Tom van der Woerdt i...@tvdw.eu wrote: Hi,

[twitter-dev] Re: Twitter Oauth Realization within an SAP CRM system

2010-09-27 Thread Andyiz
Hello Tom, Thanks for your feedback, but Twitter response is a simple Incorrect signature: ?xml version=1.0 encoding=UTF-8? hash request/1/statuses/update.xml/request errorIncorrect signature/error /hash Regards, Anand On Sep 27, 6:00 pm, Tom van der Woerdt i...@tvdw.eu wrote: Hi, The

Re: [twitter-dev] Streaming API question..

2010-09-27 Thread Taylor Singletary
Hi Omri, Sorry, there's no option currently to filter by language. Taylor On Mon, Sep 27, 2010 at 1:50 AM, omri omridek...@gmail.com wrote: hi there, I am using the streaming API (the statuses/filter), and I get a lot of tweets in spanish. I wanted to know if there is a way to get results

Re: [twitter-dev] AppleScript call to Ruby Script Help

2010-09-27 Thread Nathaniel Irons
On Sun, Sep 26, 2010 at 7:05 PM, William K. lordbl...@gmail.com wrote: Now when I try to put it in the script as: set file_path to /Users/serveradmin/Pictures/Weather/ image_graphic do shell script ruby /Users/serveradmin/update_profile_image.rb file_path I receive the following error:

[twitter-dev] Getting interest wise users.

2010-09-27 Thread rajiv74
Hi, Can I get list of number of users added to twitter site date- wise? Also can I get the list of users interest wise. e.g http://twitter.com/invitations/suggestions/business or http://twitter.com/invitations/suggestions/charity Thanks in Advance, Rajiv -- Twitter developer

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

2010-09-27 Thread ManuelZ
I'm using @anywhere to provide sign in with Twitter and Twitter profiles within my app. Works like a charm! One problem: when opening the oauth authentication challenge (at https://oauth.twitter.com/2/authorize) in a popup window, some of the content is retrieved from http, which leads to browser

[twitter-dev] Re: TwitterOAuth

2010-09-27 Thread Rick
Thank you Abraham. It works but its slow w/ 1350 followers, but it works. I am still having troubles finishing my script for the last 5 weeks now, can I mail you with my script file so you can put me in the right direction? I feel I am missing a clue or a line. Your help is very mutch

[twitter-dev] FYI: Undocumented response code from users/show

2010-09-27 Thread Brian Maso
Grabbing some data from users/show, have received a unexpected response code. Just thought I'd memorialize it here: If the requested user account is suspended, the response code is 403. Twitter API docs only mention 403 being used for update rate limits (like limiting how much an app updates

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

2010-09-27 Thread Matt Harris
Thanks Manuel, Looks like that content doesn't realise it's on SSL. Can you file a ticket on our issue tracker for this: http://code.google.com/p/twitter-api/issues/list Thanks. Matt On Mon, Sep 27, 2010 at 10:19 AM, ManuelZ manuel.zahar...@hotmail.com wrote: I'm using @anywhere to provide

Re: [twitter-dev] Re: Streaming API skips users

2010-09-27 Thread Matt Harris
Hey Ginny, Thanks for letting us know it was the ruby gem at fault - and for correcting it. Best Matt On Sun, Sep 26, 2010 at 12:17 PM, Ginny Hendry ginnyhen...@gmail.com wrote: FYI, we found the bug!  Twitter API was fine, but yajl-ruby gem has an error that causes it to skip tweets of some

Re: [twitter-dev] problem about Anywhere and Tweetbutton

2010-09-27 Thread Matt Harris
Hey Emre, I haven't been able to reproduce this in IE8. Can you provide a URL where this is happening so I can investigate further. Best, Matt 2010/9/26 Emre GÜLCAN emregul...@gmail.com: Hi all, I'm new on the list. I have a problem about @anywhere and tweetbutton in Internet Explorer 8 If

[twitter-dev] Mobile twitter integration issue: how come it display content in french instead of english?

2010-09-27 Thread simon guan
I am working on blackberry application, trying to integrate twitter into our app. After I called request_token, I can get token successfully, but when it display authorize page, the page is half english, half french, which is very weird, any one have an idea abt this? Thanks. -- Twitter

Re: [twitter-dev] problem about Anywhere and Tweetbutton

2010-09-27 Thread Emre GÜLCAN
Hi Matt, Thank you for your answer. You can see error on the http://bilkom.banadestekolsun.com This only throw error (and block my menu) on IE8, Chrome and Firefox are working normal. Regards * Emre GULCAN* Application Developer On Mon, Sep 27, 2010 at 9:20 PM, Matt Harris

[twitter-dev] Re: Streaming API skips users

2010-09-27 Thread Ginny Hendry
For anyone else who is having this problem, the fix has been identified but has not yet been published as a new gem version. What happens is that it skips some tweets. The ones it skips are the ones that happen to have a message length in hex that includes a zero character so it will seem

[twitter-dev] REST API or best solution

2010-09-27 Thread Matthew Mihok
So I am building a caching-proxy on my server to make requests to Twitter's databases when my subsites (100+ of them) want to pull user_timeline. Our rate limit seems to go over its limit too much and thus were going to cache responses from api.twitter, and allow our subsites to pull from there

Re: [twitter-dev] Re: Missing entities in REST

2010-09-27 Thread Taylor Singletary
Hi Everyone, The missing entities issue should finally be resolved. Please let us know if you continue to have these issues. Thanks! Taylor On Fri, Sep 24, 2010 at 7:42 AM, Taylor Singletary taylorsinglet...@twitter.com wrote: This entities not appearing problem still exists, unfortunately.

[twitter-dev] not authorized over and over again

2010-09-27 Thread eMailaya
Im developing a desktop application. firstly, the user needs to approve my app to let it access his account, enter the PIN code and retrieve his statuses and his followees' statuses, all is working fine. im closing my application and re-open it. now i already have his PIN code so im skipping the

[twitter-dev] Re: xauth help for: 'failed to validate oauth signature and token'

2010-09-27 Thread Doug
LOL thanks that was it (palm-to-face). Thanks for the suggestions folks On Sep 27, 3:38 am, Tom van der Woerdt i...@tvdw.eu wrote: Hi Doug, The only thing I can think of is that you aren't sending an Authorization: header that starts with OAuth. Tom On Sep 26, 10:30 pm, Doug

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

2010-09-27 Thread nischalshetty
My app http://www.justunfollow.com is not able to connect to Twitter from the Google Appengine. I had faced this problem a few months ago where you guys found out that the appengine IPs were being blocked due to some rogue app. Please help, thousands of my users are getting timeout errors! --

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

2010-09-27 Thread John Adams
We're not currently blocking google app engine; Could you pass along some source IPs and we'll research? -john On Mon, Sep 27, 2010 at 6:25 PM, nischalshetty nischalshett...@gmail.comwrote: My app http://www.justunfollow.com is not able to connect to Twitter from the Google Appengine. I had

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

2010-09-27 Thread nischalshetty
Hi John, Just got news from appengine that it is being blocked. http://twitter.com/app_engine/status/25743996553 Can you please have a check? It must be the blocking issue, had one a few months back for Appengine apps. Seems to work fine on my local dev environment. -N On Sep 28, 6:49 am, John

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

2010-09-27 Thread John Kalucki
It sounds that, perhaps, you aren't recalculating the hash with the current timestamp. You can't re-use hashes. -John Kalucki http://twitter.com/jkalucki Twitter, Inc. On Mon, Sep 27, 2010 at 3:39 PM, eMailaya a...@emailaya.com wrote: Im developing a desktop application. firstly, the user

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

2010-09-27 Thread K
Hi sorry for bringing up the issue that has been discussed in the past... I found this issue tracking from other posts about the same issue. http://groups.google.com/group/twitter-development-talk/browse_thread/thread/3c3c97cd80ebc707/a82aab0e12c61dc3?hl=enlnk=gstq=deny#a82aab0e12c61dc3 So it

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

2010-09-27 Thread Taylor Singletary
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 oauth_verifier and other information you'd need on the callback URL to properly execute the exchange request token for access token

Re: [twitter-dev] Re: Streaming API skips users

2010-09-27 Thread Tim Haines
Thanks for following up with this Ginny. Brian has just pushed version 0.7.8 of the gem, which fixes this. Tim. On Tue, Sep 28, 2010 at 5:16 AM, Ginny Hendry ginnyhen...@gmail.com wrote: For anyone else who is having this problem, the fix has been identified but has not yet been published

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

2010-09-27 Thread John Adams
We talked with GAE and have resolved this issue. -j On Mon, Sep 27, 2010 at 7:06 PM, nischalshetty nischalshett...@gmail.comwrote: Hi John, Just got news from appengine that it is being blocked. http://twitter.com/app_engine/status/25743996553 Can you please have a check? It must be the