https://github.com/bytespider/oauthrequest
OAuth Request signing module
https://github.com/bytespider/oauthrequest
Last synced: about 1 year ago
JSON representation
OAuth Request signing module
- Host: GitHub
- URL: https://github.com/bytespider/oauthrequest
- Owner: bytespider
- License: mit
- Created: 2012-07-11T08:32:39.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2013-02-14T10:42:14.000Z (over 13 years ago)
- Last Synced: 2025-03-12T06:12:22.472Z (over 1 year ago)
- Language: JavaScript
- Size: 114 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# OAuthRequest
[](http://travis-ci.org/bytespider/OAuthRequest)
[](http://coderwall.com/bytespider)
OAuthRequest is a W3C compatable XMLHttpRequest object for signing OAuth requests. Designed for use with jsOAuth 2.
## Getting Started
Install the module with: `npm install OAuthRequest`
```javascript
var OAuthRequest = require('OAuthRequest');
var xhr = new OAuthRequest();
xhr.open("GET", "http://www.google.co.uk", true);
xhr.addEventListener("readystatechange", function (event) {
if (this.readyState === this.DONE && this.status >= 200) {
doStuff(this.responseText);
}
});
xhr.send(null);
```
## Documentation
_(Coming soon)_
## Examples
_(Coming soon)_
## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [grunt](https://github.com/cowboy/grunt).
## Release History
_(Nothing yet)_
## License
Copyright (c) 2012 Rob Griffiths
Licensed under the MIT license.