Package Exports
- oauth-request
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (oauth-request) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
oauth-request 
OAuth 1.0a via request
Installation
npm i oauth-request --saveUsage
var OAuth = require('oauth-request');
var twitter = OAuth({
consumer: {
public: 'xxxxx',
secret: 'xxxxx'
}
});
twitter.setToken({
public: 'xxxxx',
secret: 'xxxxx'
});
//list user timeline
twitter.get('https://api.twitter.com/1.1/statuses/user_timeline.json', function(err, res, tweets) {
console.log(tweets);
});
//list user timeline limit 5
twitter.get({
url: 'https://api.twitter.com/1.1/statuses/user_timeline.json',
qs: {
count: 5
},
json: true
}, function(err, res, tweets) {
console.log(tweets);
});Example
API
.get()
- .get(url, callback)
- .get(request options, callback)
.post()
- .post(url, callback)
- .post(request options, callback)
TODO
-
.stream



