1.0.0 • Published 11 years ago

oauth2-token v1.0.0

Weekly downloads
9
License
-
Repository
github
Last release
11 years ago

oauth2-token

Build Coverage Dependencies

Parse OAuth 2.0 tokens.

Install

$ npm install oauth2-token

Usage

var token = oauth2token.parse('{
      "access_token":"mF_9.B5f-4.1JqM",
      "token_type":"Bearer",
      "expires_in":3600,
      "refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA"
    }');
// => { type: 'bearer', accessToken: 'mF_9.B5f-4.1JqM', expiresAt: Date(...) }

Tests

$ npm install
$ npm test

Credits

License

The MIT License

Copyright (c) 2013 Jared Hanson [http://jaredhanson.net/](http://jaredhanson.net/)