🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

oauth-request-promise

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oauth-request-promise

OAuth 1.0a via request... with promises!

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

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

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: String token public
twitter.setToken('xxxxx');
  • oauth_token: Object
twitter.setToken({
    public: 'xxxxx',
    secret: 'xxxxx'
});

TODO

  • .stream

Keywords

oauth

FAQs

Package last updated on 16 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts