Okta Application Setup
Currently only Labs Managers have admin access to Okta. If you have Okta issues, please reach out to your Engineering Manager.
An Okta Application defines a client application that can use the Okta domain for authentication.
The steps below are for setting up an application using the console... hint hint these should all be available via the Okta API, maybe next step would be to write a small script... followed by automation?
Setting up an SPA
Sign-in to the Labs Okta domain as an admin: https://dev-625244.okta.com
Create a new app in Okta as "Single-Page App"
Name: The product name (e.g. Bridgegood)
Base URIs: The list of domains to whitelist for CORS (Wildcards not allowed)
http://localhost:3000/ (For Create React Apps)
Login redirect URIs: List of allowed redirect URIs after login (Wildcards allowed)
labs://bridgegood/implicit/callback (For iOS Apps)
Login redirect URIs: List of allowed redirect URIs after logout (Wildcards allowed)
Group assignments
Everyone
Test Users
Grant type allowed
✅ Authorization Code
✅ Implicit
Save
Not done yet, we need to make a couple changes after we save...
Click 'Edit' on the general tab
Login initiated by: Either Okta or App
✅ Display application icon to users
✅ Display application icon in the Okta Mobile app
✅ Redirect to app to initiate login
Initiate login URI: https://bridgegood.dev
For bonus points, click the ✎ on the application icon and add a nice icon for the app
Almost done!
Click 'Trusted Origins' under the 'API' menu
Click 'Add Origin' for each the root domain and each product subdomains:
✅CORS
✅Redirect
Bridgegood Root: https://bridgegood.dev
Bridgegood a: https://a.bridgegood.dev
Bridgegood b: https://b.bridgegood.dev
Bridgegood c: https://c.bridgegood.dev
Done!
Last updated
Was this helpful?