This project allows you simulate Okta's Device Authorization Grant Flow within your browser.
For additional information about the Device Authorization Grant please visit Okta Developer page.
This project serves as a Sample Application, that you can tweak or completely re-purpose. It is community-supported and is maintained by members of the Okta team for developers and other IT professionals. This is not an official Okta product and does not qualify for any Okta support. Okta makes no warranties regarding this project. Anyone who chooses to use this project must ensure that their implementation meets any applicable legal obligations including any Okta terms and conditions.
- Okta Tenant - If you do not already an Okta tenant, you can register for a free Okta Developer Editions
- An OIDC applications to use Device Authorization Grant. How-to
- Node v14.0.0+
- npm v6.14.15+
- Clone the repo.
git clone https://github.com/OktaCIAM/okta-streaming-service-demo.git
- Install dependencies based on package.json.
npm install
- Copy the contents of the .env.example file.
#Windows
copy .env.example .env
#Linux
cp .env.example .env
- Update variables in the .env file.
# Okta Configuration
# ie.
# OKTA_HOST=YOUR_OKTA_SUBDOMAIN.okta.com or YOUR_OKTA_SUBDOMAIN.oktapreview.com
# CLIENT_ID=0oa...0h8
# AUTHZ_ID=default or Authorization Server GUID
#
OKTA_HOST=<OKTA URL>
CLIENT_ID=<APPLICATION CLIENT ID>
AUTHZ_ID=<OKTA AUTHORIZATION ID>
# Optional Configuration
# Default Scopes are set to: "openid offline_access profile"
# ie
# SCOPES=custom-scope-1 custom-scope-2
#
# SCOPES=<REQUIRED SCOPES>
# Enable for verbose logging. Defaults to false
# DEBUG=false
- Save the .env file.
To start the express server, enter the following command
npm run start
- Open http://localhost:8080 on your browser of choice. You will see the following screen.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.