jsOAuth
jsOAuth copied to clipboard
JavaScript implimentation of the OAuth protocol. Currently supports version 1.0 (RFC5849) of the specification. Node.js & CommonJS compatible.
Changes query string from a hash to a list. Changes the JSON data structure for passing in parameters. Where previously `data` was an object hash, it is now an array:...
The `QueryString` class is an instance of `Hash` so at the data-structure level can only support one parameter with the same name. Both HTTP and OAuth place no restrictions on...
http://bower.io/
when using jsOAuth-1.3.6.js with Titanium the "xhr" that is declared via Request(); xhr = Request(); should declare xhr.onerror function because titanium HTTPClient doesn't send readystate = 4 in case an...
remove global to row 806 if (typeof global.Titanium !== 'undefined' && typeof global.Titanium.Network.createHTTPClient != 'undefined') { XHR = global.Titanium.Network.createHTTPClient(); to if (typeof Titanium !== 'undefined' && typeof Titanium.Network.createHTTPClient != 'undefined')...
A feature request: I'm playing with Twitter's Streaming API, which requires OAuth for connecting. Problem is jsOAuth does not support streaming responses. The get method currently looks at readystate ==...