Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neverendingqs/oauth2-client-shell-v2
Interface for going through the OAuth 2.0 authorization code grant flow.
https://github.com/neverendingqs/oauth2-client-shell-v2
oauth2 vuejs
Last synced: 5 days ago
JSON representation
Interface for going through the OAuth 2.0 authorization code grant flow.
- Host: GitHub
- URL: https://github.com/neverendingqs/oauth2-client-shell-v2
- Owner: neverendingqs
- License: apache-2.0
- Created: 2019-10-16T18:32:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:57:58.000Z (over 1 year ago)
- Last Synced: 2024-05-01T16:05:00.487Z (7 months ago)
- Topics: oauth2, vuejs
- Language: Vue
- Homepage: https://oauth2-client-shell.neverendingqs.com/
- Size: 2.63 MB
- Stars: 3
- Watchers: 3
- Forks: 52
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oauth2-client-shell-v2
Interface for going through the OAuth 2.0 authorization code grant flow as per
[RFC 6749 section 4](https://tools.ietf.org/html/rfc6749#section-4). Uses local
and session storage to store state. This is a refresh of
[oauth2-client-shell](https://github.com/neverendingqs/oauth2-client-shell).## Running a Local Version
The local version uses a self-signed SSL certificate from
[openssl-self-signed-certificate](https://www.npmjs.com/package/openssl-self-signed-certificate).```sh
# Install npm dependencies
npm i# Build the site
npm run build# Start the site
npm run start
```