T
Torsten Mueller
Did anyone go the hard way (like me ...) to access an OAuth server
through boost::asio or another low level HTTP library? This includes
building the requests and signing them by hand.
For Twitter I am successful and my algorithm is very stable. But now I
try to port this to Identi.ca, and this makes me despair. I read tons of
documents in the last days, especially the OAuth spec, again and again,
and fixed indeed several minor inconsistencies but after all this the
result of obtaining a request_token from Identi.ca is still nothing but
"401 Invalid signature". So it seems that this server wants something
else to be signed than me. But what???
Does anyone know wheather the address to obtain the request_token should
contain parameters or not? I mean, the address is normally
https::/api.twitter.com/request_token
Not more. For twitter access I put all the parameters into the
Authorization header only. But I found several references who use
addresses like this
https:://identi.ca/api/request_token?oauth_callback%3Doob%26oauth_consumer_key%3D92...
What's right? Any opinions?
T.M.
through boost::asio or another low level HTTP library? This includes
building the requests and signing them by hand.
For Twitter I am successful and my algorithm is very stable. But now I
try to port this to Identi.ca, and this makes me despair. I read tons of
documents in the last days, especially the OAuth spec, again and again,
and fixed indeed several minor inconsistencies but after all this the
result of obtaining a request_token from Identi.ca is still nothing but
"401 Invalid signature". So it seems that this server wants something
else to be signed than me. But what???
Does anyone know wheather the address to obtain the request_token should
contain parameters or not? I mean, the address is normally
https::/api.twitter.com/request_token
Not more. For twitter access I put all the parameters into the
Authorization header only. But I found several references who use
addresses like this
https:://identi.ca/api/request_token?oauth_callback%3Doob%26oauth_consumer_key%3D92...
What's right? Any opinions?
T.M.