[twitter-dev] Oauth Incorrect signature Error

2010-08-18 Thread Olu
Hi, I've been able to get a token and secret for an user but however, I'm getting an error while trying to use the status/update call. I've googled the problem and tried several solutions but none seems to work. I'm not sure what the problem is and I've been looking at this for hours. I would

Re: [twitter-dev] Oauth Incorrect signature Error

2010-08-18 Thread Taylor Singletary
First guesses: your current implementation is incompatible for statuses containing space characters or non-alphanumeric characters. You are rawurlencoding your status parameter while building your signature base string.. which is correct -- except, you should have URL encoded your status value

Re: [twitter-dev] Oauth Incorrect signature Error

2010-08-18 Thread Martin Dapas
On Wed, Aug 18, 2010 at 10:40:11AM -0700, Olu wrote: Hi, I've been able to get a token and secret for an user but however, I'm getting an error while trying to use the status/update call. I've googled the problem and tried several solutions but none seems to work. I'm not sure what the problem