github-oauth2

0.1.1 • Public • Published

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 for more info on these parameters

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

Dependents (0)

Package Sidebar

Install

npm i github-oauth2

Weekly Downloads

1

Version

0.1.1

License

MIT

Last publish

Collaborators

  • andrewwinterman