node-oauth
node-oauth copied to clipboard
Allow OAuth parameters to be passed in querystring instead of header.
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.
Yes, it's still actual. I agree with pselden4.
var signedUrl = OAuth.signUrl(url);
http.request(...);
Is that what you mean?
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.