node-oauth icon indicating copy to clipboard operation
node-oauth copied to clipboard

Allow OAuth parameters to be passed in querystring instead of header.

Open pselden opened this issue 14 years ago • 3 comments

Some oauth services that I've been using do not support Authorization headers to be used. It would be nice if there was a flag to have the parameters be appended to the querystring instead.

pselden avatar Oct 24 '11 20:10 pselden

Yes, it's still actual. I agree with pselden4.

BooBSD avatar Jan 26 '12 18:01 BooBSD

var signedUrl = OAuth.signUrl(url);
http.request(...);

Is that what you mean?

biesiad avatar Jul 12 '12 17:07 biesiad

according to http://oauth.net/core/1.0/#rfc.section.5.2 there are 3 ways to send the Consumer Request Parameters

Some services do not support the first one (Authorization header) so it would be nice to be able to select one of the 3 methods and defaulting to Authorization header.

francisdb avatar Jul 19 '16 09:07 francisdb