UNPKG

github-oauth2

Version:

A utility to get Oauth2 tokens from github for use in api calls.

30 lines (17 loc) 720 B
# github-oauth2 # Defines a function you can use to fetch an Oauth2 token from github for your application. You should set the User-Agent you'd like to use in ./user-agent.js. Otherwise it defaults to: "nodejs/0.0.1 (node) gist command line tool" See the [github api docs](http://developer.github.com/v3/oauth/#create-a-new-authorization) for more info on these parameters ```javascript var auth_prep = require("github-oauth2") , scopes = ["user", "gist", "repo"] // currently the module exports a factory function which takes as parameters a few details about your application. var get_auth = auth_prep("note", "http://note_url.com", scopes) get_auth(function(err, token){ console.log(token) }) ```