kurrik
#1
If you have any questions, comments, or suggestions about the [Node:3411] blog post, please post them to this discussion thread.
TvdW
#2
And for those who still have problems with generating a proper base string, I strongly recommend this tool: http://quonos.nl/oauthTester/. Basically, it checks your base string and tells you some things it notices. People generally find this helpful 
coordt
#4
Iâm using the OAuth tool with curl and am getting a 401 Failed to validate oauth signature and token. The date and time on my computer are within seconds of the Date header returned.
I set the request type as POST and the request URI to : https://twitter.com/oauth/request_token
I copied the resulting cURL command text and immediately pasted it into the terminal.
Iâve ruled out date and time issues, so what else could cause your OAuth tool to fail? Am I using it wrong?
Thanks,
Corey
episod
#6
Other issues you can be having aside, thatâs not a valid API or OAuth URL on twitter â you want https://api.twitter.com/oauth/request_token â once youâve tried changing to the correct path and you still canât get it to work, feel free to share the curl command youâre trying to execute
coordt
#7
Here is the curl command I executed:
curl --request âPOSTâ âhttps://api.twitter.com/oauth/request_tokenâ --header âAuthorization: OAuth oauth_consumer_key=âkpScDAXRWf0DtkTwuNotgQâ, oauth_nonce=â1f2c4a93d93ad3f2c1d27eda066dce5bâ, oauth_signature=ârUrwAmftckVlQ2dJd%2FDZ0A9hw2A%3Dâ, oauth_signature_method=âHMAC-SHA1â, oauth_timestamp=â1321395189â, oauth_token=â21396527-0dY6VFl9iQi90FF3YJM40ixLPZn7GbD4E9MrqlIdcâ, oauth_version=â1.0ââ --verbose
This results in a 401 Unauthorized response with the message âFailed to validate oauth signature and tokenâ
episod
#8
Youâre including an oauth_token in a request oauth/request_token â one of the few methods where you shouldnât send an oauth_token at all â itâs the method to get the first oauth_token (ârequest tokenâ) you need to complete the other parts of the sequence.
essiele
#9
Iâm trying to get our users to login to our website with their twitter id & password (as an option). The authorisation window comes up fine asking for twitter details (or, if already logged in to twitter, asks for confirmation of authorisation). But when âConnectâ is clicked, this is what appears in the the window:
âSomething is technically wrong.
Thanks for noticingâweâre going to fix it up and have things back to normal soonâ.
Iâm using CB Connect for this facility⊠Iâll also post this in the Community Builder forum. But is there any help I can get with this issue from this end, please?
Many thanks in advance.
Ess
PS: Even though I get that error message, it still logs me in to my Twitter account (if not already logged in).
Ok, hereâs an example of my current search api call:
http://search.twitter.com/search.json?q=nba&rpp=100&include_rts=false
What would be the new search api v1.1 equivalent of this?
Not sure about how to use authentication in a public call like this for the new api.
Thanks for your help.