JSPM

oauth-request

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 110
  • Score
    100M100P100Q63633F
  • License MIT

OAuth 1.0a via request

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 Build Status

OAuth 1.0a via request

NPM version Dependency Status

Coverage Status Code Climate

Installation

npm i oauth-request --save

Usage

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()

.post()

TODO

  • .stream