[twitter-dev] Incorrect signature

2011-05-26 Thread avitchi
Hello API people. I have a problem I hope someone can help me with. I have developed an OAuth class in IBM LotusScript which enables me to write tweets using background agents with the IBM Domino platform. It was a steep learning curve but the class appears to work (at least in part). Now,

[twitter-dev] incorrect signature with get parameters

2011-05-24 Thread galeyte
Hi again ! I'me still working on my javascript twitter client. At this time, every request i make using POST method work perfectly, but i'm experiencing some trouble using GET parameters with oauth. Here is my code to retweet a message : var parameters = [oauth_consumer_key=+consumer_key,

[twitter-dev] Incorrect signature

2011-05-20 Thread jfk
Hi, I have problems with authentication when I used a methods of the API. The non autenticaded methods works fine. The error message is Message = The remote server returned an error: (401) Unauthorized. the reason it's a bad signature. I used a alls the library for .net and raise the same

[twitter-dev] Incorrect Signature

2011-05-18 Thread Jay Ligda
OK, I spent the last hour searching for incorrect signature posts and did not solve my issue. When trying to post with oAuth I get Incorrect Signature. It works fine if I log in first, my script works perfectly, but if I rely on the oAuth to log me in it does not work, Incorrect Signature. Any

[twitter-dev] Incorrect signature

2011-04-04 Thread geltogel
Hi everybody.. Im trying to change twitter user status through my app.. I already have the acces token but when i try to post I keep reciving Incorrect signature Im using php and this is the main code: $config = array ( requestTokenURL = https://api.twitter.com/1/statuses/ update.json,

[twitter-dev] Incorrect Signature on OAuth POST

2011-03-25 Thread KiT
Hi, I know there are plenty of discussions about the incorrect signature errors but I really can't seem to find the solution. What I'm trying to do is to POST a message with the following base string and Authentication header: POST http%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses%2Fupdate.json

Re: [twitter-dev] Incorrect signature

2011-01-18 Thread Evadne Wu
When making a base string, you put POST variables, HTTP query parameters, and oAuth parameters all in the bucket, sort them alphabetically, and encode all of them. So, the count needs to be in the base string (if I am recalling correctly). Personally finding http://quonos.nl/oauthTester very

[twitter-dev] Incorrect signature

2011-01-16 Thread Thomas
Hello, I am trying to get the recent mentions with the twitter api but it returns the error Incorrect signature. Here's my PHP code: ?php $time = time() + 10800; $target = urlencode(http://api.twitter.com/1/statuses/mentions.xml? count=20); $oauth_consumer_key = urlencode(); $oauth_nonce =

Re: [twitter-dev] Incorrect signature for users/search using REST API

2011-01-04 Thread Matt Harris
Hi Rohit, When passing spaces to in queries it is recommend you use %20. The reason is that the + is often badly encoded by OAuth libraries. Percent-encoding a space in the request is the most reliable way for the signature to be calculated. The reason why the search works for both Twitter_API

Re: [twitter-dev] Incorrect signature for users/search using REST API

2010-12-31 Thread Rohit Bansal
Hii Can you please share the code you are using through which you are getting the response. I am working this out using scribe in Java and able to fetch response for all API calls except possibly this one. Thanks On Thu, Dec 30, 2010 at 7:19 PM, deepa nagaraj deepa.23.naga...@gmail.comwrote:

[twitter-dev] Incorrect signature for users/search using REST API

2010-12-30 Thread Rohit Bansal
The XML response I am getting: ?xml version=1.0 encoding=UTF-8? hash request/1/users/search.xml?q=Twitter%20API/request errorIncorrect signature/error /hash Request for resource which I made: http://api.twitter.com/1/users/search.xml?q=Twitter%20API Request Type: GET Replacing

Re: [twitter-dev] Incorrect signature for users/search using REST API

2010-12-30 Thread deepa nagaraj
Hi... But i am getting same output for both url.. http://api.twitter.com/1/users/search.xml?q=Twitter%20API and http://api.twitter.com/1/users/search.xml?q=Twitter_API On Thu, Dec 30, 2010 at 7:00 PM, Rohit Bansal rohitbansal.h...@gmail.comwrote: The XML response I am getting: ?xml

Re: [twitter-dev] Incorrect signature while getting user time line

2010-12-20 Thread Georgooty varghese
Now the issue solved. Thanks Twitter. Regards, George On Mon, Dec 20, 2010 at 10:20 AM, Georgooty varghese georgo...@gmail.comwrote: Dear Twitter, I didn't get a solution. Please help me. I am waiting for your reply. Regards, George On Thu, Dec 16, 2010 at 1:58 PM, Tom van der Woerdt

Re: [twitter-dev] Incorrect signature while getting user time line

2010-12-19 Thread Georgooty varghese
Dear Twitter, I didn't get a solution. Please help me. I am waiting for your reply. Regards, George On Thu, Dec 16, 2010 at 1:58 PM, Tom van der Woerdt i...@tvdw.eu wrote: They look fine, and since the rest of the requests work fine (which you said), I have to assume that it's not the

Re: [twitter-dev] Incorrect signature while getting user time line

2010-12-17 Thread Georgooty varghese
I didn't get a proper solution. Anybody please help me. Regards, George On Thu, Dec 16, 2010 at 7:11 PM, Georgooty varghese georgo...@gmail.comwrote: Ok. Thanks Tom. What wrong I have made in this. I didn't find any issue. Could u please check the issue. I am waiting for your reply.

Re: [twitter-dev] Incorrect signature while getting user time line

2010-12-16 Thread Tom van der Woerdt
They look fine, and since the rest of the requests work fine (which you said), I have to assume that it's not the signature generation. Also, since you're not the only one to mention this in the past 12 hours, I have to leave open the possibility of Twitter being the issue. However, before

Re: [twitter-dev] Incorrect signature while getting user time line

2010-12-16 Thread Georgooty varghese
Ok. Thanks Tom. What wrong I have made in this. I didn't find any issue. Could u please check the issue. I am waiting for your reply. Regards, George On Thu, Dec 16, 2010 at 1:58 PM, Tom van der Woerdt i...@tvdw.eu wrote: They look fine, and since the rest of the requests work fine (which you

Re: [twitter-dev] Incorrect signature while getting user time line

2010-12-15 Thread Tom van der Woerdt
Hi George, There have been some changes to Twitter's API and while not all of them have been activated yet, some of them may apply to you. Incorrect signature usually means that your signature is bad. This can mean a lot of things, but if only your user_timeline part is broken, you can

Re: [twitter-dev] Incorrect signature while getting user time line

2010-12-15 Thread Georgooty varghese
Thanks twitter for your quick reply. I have make only one modification into my code. Other code changes do only when I get your reply. I have changed url for user time line http to https. Here I have copied my user time line base url and signature and base string. Please suggest to me a correct

[twitter-dev] incorrect signature

2010-12-08 Thread Zahra Naghdi
I wrote a code in windows phone 7 works with twitter it can get the user timeline and favorite but for direct message,home timeline and replies it has an error incorrect signature what should I do ? my base string for home timeline is:GEThttps%3A%2F%2Fapi.twitter.com

[twitter-dev] Incorrect signature

2010-10-25 Thread yogeshkolte
Hi In my android app I can make calls to Twitter api immediately after I login. I am using same instance of OAuthConsumer. But when I create OAuthconsumer for subsequent call and use setTokenWithSecret I get Incorrect signature error. I spent few hours trying to debug but no luck... any help is

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-19 Thread Georgooty varghese
Thank u twitter..Thank u very much. Now the issue was resolved Regards, George On Mon, Oct 18, 2010 at 8:15 PM, Taylor Singletary taylorsinglet...@twitter.com wrote: When using headers, you need to wrap each value in quotes. The authorization header should contain only oauth_* parameters,

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-18 Thread Georgooty varghese
Now I set to http header name is Authorization header value = oauth_consumer_key=**,oauth_nonce=b8qoVIxfQyEOOgu6vHjN215,oauth_signature_method=HMAC-SHA1, oauth_timestamp=1287389017,oauth_token=*,oauth_version=1.0,page=1 ,oauth_signature=cY%2F7W%2FuLWCidUD7KziKFwOcM9RI%3D http req

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-18 Thread Georgooty varghese
could you please help me .. I am waiting for your reply... On Mon, Oct 18, 2010 at 1:39 PM, Georgooty varghese georgo...@gmail.comwrote: Now I set to http header name is Authorization header value =

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-18 Thread Taylor Singletary
When using headers, you need to wrap each value in quotes. The authorization header should contain only oauth_* parameters, not any additional query parameters that may have been part of your request. Here's an example of the same request you're trying to make (with different keys, but the same

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-18 Thread Georgooty varghese
Thank u twitter. Could you specify what is header name? On Mon, Oct 18, 2010 at 8:15 PM, Taylor Singletary taylorsinglet...@twitter.com wrote: When using headers, you need to wrap each value in quotes. The authorization header should contain only oauth_* parameters, not any additional

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-16 Thread Georgooty varghese
Any body please help me? On Fri, Oct 15, 2010 at 11:00 AM, Georgooty varghese georgo...@gmail.comwrote: * Now I have removed oauth parameters in query string and added it to HTTP header. * Removed ~ char from auth nonce (reserved chars) Now i got another exception Could not authenticate

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-16 Thread Georgooty varghese
* Now I set to Http header value Header name = Authorization value = http://api.twitter.com/1/statuses/home_timeline.json?oauth_consumer_key= *oauth_nonce=QyRr

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-16 Thread Tom van der Woerdt
The syntax of that header is wrong. Please look at http://dev.twitter.com/pages/auth for the correct syntax. Tom On 10/16/10 9:23 AM, Georgooty varghese wrote: * Now I set to Http header value Header name = Authorization value =

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Georgooty varghese
Thanks for quick reply. Now i have removed xAuth stuff in GET parameter. Now uri is look like http://api.twitter.com/1/statuses/home_timeline.json?oauth_consumer_key=;

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Tom van der Woerdt
Could you give us your Base String? Tom On Oct 14, 2010, at 8:00 AM, Georgooty varghese georgo...@gmail.com wrote: Thanks for quick reply. Now i have removed xAuth stuff in GET parameter. Now uri is look like

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Georgooty varghese
Base string look like GEThttp%3A%2F%2Fapi.twitter.com %2F1%2Fstatuses%2Fhome_timeline.jsonoauth_consumer_key%3DOmTQVOKDomNbrHuuudS

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Taylor Singletary
Without getting to deep into this, some advice: * Use HTTP header based authentication instead of attaching OAuth parameters to the query string. It makes it much more difficult to receive assistance from others when you use query-string based auth and increases the chances of an encoding error

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-14 Thread Georgooty varghese
* Now I have removed oauth parameters in query string and added it to HTTP header. * Removed ~ char from auth nonce (reserved chars) Now i got another exception Could not authenticate you Could u please help me.. On Thu, Oct 14, 2010 at 7:30 PM, Taylor Singletary

[twitter-dev] Incorrect signature while getting home tweets

2010-10-13 Thread Georgooty varghese
Dear Twitter, I have implemented a twitter client application in C using xAuth authentication. I got auth token and token secret. Then I wont be able to get home tweets. Exception is Incorrect signature. URL is http://api.twitter.com/1/statuses/home_timeline.json?

Re: [twitter-dev] Incorrect signature while getting home tweets

2010-10-13 Thread Tom van der Woerdt
Don't use xAuth, use OAuth. Leave the x_auth_ stuff and use your oauth_token and oauth_token_secret. Oh, and look at what xAuth actually is. It's no replacement for OAuth. Tom On 10/14/10 5:22 AM, Georgooty varghese wrote: Dear Twitter, I have implemented a twitter client application in

[twitter-dev] Incorrect Signature

2010-10-11 Thread Quasimodo
Working on just a simple update/status problem. I'm using the PEAR Services_Twitter object. I keep getting incorrect signature. I'm not sure if my headers are correct. Here is my header string: POST /1/statuses/update.json HTTP/1.1 User-Agent: HTTP_Request2/0.5.2 (http://pear.php.net/package/

[twitter-dev] Incorrect signature in perl without Net::Twitter when updating status

2010-09-30 Thread albh
Hi I'm trying to change my status with perl, and without the Net::Twitter module. I'm using LWP useragent, and it works fine until the final call to update the status, where I get a incorrect signature. Here's my signature base string: my $signature_base_string = oauth_consumer_key=

[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

[twitter-dev] Incorrect signature /1/statuses/update.json

2010-09-23 Thread marcel
hi I get the following error when I try to post a update (http:// api.twitter.com/1/statuses/update.json) {request:/1/statuses/update.json,error:Incorrect signature} I asked the user for permission to post on his behave with the request_token and access_token, this works just fine. But when I

Re: [twitter-dev] Incorrect signature /1/statuses/update.json

2010-09-23 Thread Taylor Singletary
Hi Marcel, Looks like you're close to getting this right. Can you share the signature base string generated for this request? Is there any specific reason you are also sending Cookie information? Thanks, Taylor On Thu, Sep 23, 2010 at 3:39 AM, marcel mar...@marcelrouwenhorst.nl wrote: hi I

[twitter-dev] Incorrect Signature Retweeting

2010-08-23 Thread nexon
Hi There!, i'm Alberto, and I having troubles retweeting. I have xAuth, and token's (all set). Even i can tweet but i can't retweet. Here is my signature before the encoding thing. POSThttp%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses%2Fretweet

[twitter-dev] Incorrect signature with oAuth

2010-07-17 Thread CeBeans
Im developing a DLL in eVC++3.0 (native C++) that uses the Twitter oAuth to update a status and have searched the web and support websites for over a week but still cant figure the signature problem out. NOTE: I have deleted the

[twitter-dev] Incorrect Signature

2010-06-24 Thread jc
Hi everyone! I'm working on a Twitter application that uses Twitter API through Twitter4j and authenticates different accounts using OAuth. We are getting an incorrect signature error when trying to perform any post to twitter api (i.e. sending an update, following, etc). I'm using Twitter4j

Re: [twitter-dev] Incorrect Signature

2010-06-24 Thread Taylor Singletary
Hi Hoel, Signature validation errors occur for a variety of reasons. We have a few error conditions on the API right now where when under heavy load we might spuriously throw an invalid signature error, but these cases should be rare. To better assist you in your issues, you'll need to dig a bit

[twitter-dev] Incorrect Signature for oAuth

2010-06-06 Thread rhysmeister
Hi All, I am having problems identifying what is wrong with converting my app to use oAuth. All my GET requests work fine but my POST requests all fail with an incorrect signature error. I am adding the oauth parameters to the authorisation header of my request. My authorisation header is build

[twitter-dev] Incorrect signature when calling update url /1/statuses/update.xml

2010-04-29 Thread Rahul
Folks, I have been trying this and have already spent lot of time on this but what i don't understand is how is getting the access token working and post to update is not working when i am using the same signature generation method for both the requests. Here is my complete scenario. 1. fetch

Re: [twitter-dev] Incorrect signature when calling update url /1/statuses/update.xml

2010-04-29 Thread Taylor Singletary
Hi Rahul, When you are POSTing to statuses/update.xml -- are you including the status that you are posting in your signature base string? As a URL-encoded parameter, it should be included in both your POST body and the signature base string (but not in the HTTP authorization header). Taylor

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

2010-01-25 Thread eco_bach
Almost there... Already googled this error and changed my request from http to https. Still getting same error... Any suggestions?

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

2010-01-25 Thread ryan alford
I am just wondering why you can't keep all of your questions in the same thread? If somebody was having the same issues as you, they would have to look through 10+ of your threads. To try to answer the question, are you including the status parameter as part of the query string, which in turn,

[twitter-dev] Incorrect signature returned for Lists API

2009-11-02 Thread Nelu Lazar
I am experiencing Incorrect signature responses while requesting any Lists API XMLs. hash request/tweetvisor/lists/subscriptions.xml/request errorIncorrect signature/error /hash I tried various methods, with no success: POST, GET, HTTPS (default), HTTP. It only happens to Lists API calls,

[twitter-dev] Incorrect signature ERROR on /statuses/update.xml - Help Please....

2009-07-28 Thread Brett Hellman
Request URL: