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 crypto = require('crypto');
var OAuth = require('oauth-request');
var twitter = OAuth({
consumer: {
key: 'xxxxx',
secret: 'xxxxx'
},
signature_method: 'HMAC-SHA1',
hash_function: function(base_string, key) {
return crypto.createHmac('sha1', key).update(base_string).digest('base64');
}
});
twitter.setToken({
key: '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
Options
check oauth-1.0a options
API
.get()
- .get(url, callback)
- .get(request options, callback)
- .get(url or request options) (no callback) return request object
.post()
- .post(url, callback)
- .post(request options, callback)
- .get(url or request options) (no callback) return request object
.setToken(oauth_token)
oauth_token:Stringtoken key
twitter.setToken('xxxxx');oauth_token:Object
twitter.setToken({
key: 'xxxxx',
secret: 'xxxxx'
});TODO
-
.stream



