https://github.com/jaredhanson/oauth2orize-pkce
Extensions to support Proof Key for Code Exchange with OAuth2orize.
https://github.com/jaredhanson/oauth2orize-pkce
Last synced: 5 months ago
JSON representation
Extensions to support Proof Key for Code Exchange with OAuth2orize.
- Host: GitHub
- URL: https://github.com/jaredhanson/oauth2orize-pkce
- Owner: jaredhanson
- License: mit
- Created: 2015-10-22T18:32:11.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-07-07T14:10:49.000Z (about 5 years ago)
- Last Synced: 2025-08-28T04:00:35.108Z (11 months ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 6
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# oauth2orize-pkce
[OAuth2orize](https://github.com/jaredhanson/oauth2orize) extension providing
support for [Proof Key for Code Exchange](https://tools.ietf.org/html/rfc7636).
Status:
[](https://www.npmjs.com/package/oauth2orize-pkce)
[](https://travis-ci.org/jaredhanson/oauth2orize-pkce)
[](https://codeclimate.com/github/jaredhanson/oauth2orize-pkce)
[](https://coveralls.io/r/jaredhanson/oauth2orize-pkce)
[](https://david-dm.org/jaredhanson/oauth2orize-pkce)
## Install
```bash
$ npm install oauth2orize-pkce
```
## Usage
#### Parse Request Extensions
In order to parse the additional parameters used to establish a proof key for
code exchange, register support for this extension with a `Server` instance:
```js
server.grant(require('oauth2orize-pkce').extensions());
```
## License
[The MIT License](http://opensource.org/licenses/MIT)
Copyright (c) 2015-2018 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)>