Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Well, my problem seems to be something silly, but it is not.

Since yesterday, I have been noticing a small mistake in some of the twitter service. In fact, in some API integration this error is appearing in the OAuth signature. Weirdly, it is not already checked all.

I reviewed the code, written in strict accordance with the documentations / RC. However, the problem persists.

"Could not authenticate with OAuth." at the following URL https://api.twitter.com/1/statuses/home_timeline.json?include_entities=true.

The funny thing is that if I remove the GET parameters

https://api.twitter.com/1/statuses/home_timeline.json

the code returns the data normally. Other services such as 'public_timeline.json' function normally when I include the GET parameters. Anyone have any idea what is causing this? Is this is a mistake by Twitter?

share|improve this question
well,managed to solve.. after reading hundreds of times, and some RFC's, I found the problem and the cause of it, these are the parameters that are sent via the query string, they should be issued in the signature, because when twitter is the parser's signature, breaking the request parameters, these would not be found, causing a failure in the query string, but my messages aimed at them, so they are a little confusing, charges that the error unable to authenticate using OAuth then look for an error,we find solutions to other problems because there are others who also produce the same message – Andrey Knupp Vital Nov 16 '11 at 17:36
hey just want you to know that you should learn how to put a full stop. Paragraphing. – mauris Dec 15 '11 at 3:26
@AndreyKnupp Glad you solved your problem. You should post your solution as an answer here (and accept it) so others know it was answered, and so others can easily reference it if they have the same problem :) – Bryan Dec 15 '11 at 3:44
1  
Not exactly a solution, but since it solved my problem. github.com/andreyknupp/Twitter/blob/master/Twitter/… – Andrey Knupp Vital Dec 15 '11 at 12:08
Twitter not working right? Imagine that! – quickshiftin Jan 30 '12 at 6:04
show 1 more comment

1 Answer

Have you tried issuing the parameters in the signature? In addition to the request parameters, all the parameters starting with OAUTH_ need to be included in the signature.

Also others should ensure they are using SSL; a stupid mistake I often see.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.