Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

oauth-request

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oauth-request

OAuth 1.0a via request

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
43
decreased by-67.42%
Maintainers
1
Weekly downloads
 
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 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: String token key
twitter.setToken('xxxxx');
  • oauth_token: Object
twitter.setToken({
    key: 'xxxxx',
    secret: 'xxxxx'
});

TODO

  • .stream

Keywords

FAQs

Package last updated on 12 Sep 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc