We are incredibly excited to announce that Stormpath is joining forces with Okta. Please visit the Migration FAQs for a detailed look at what this means for Stormpath users.
We're available to answer all questions at support@stormpath.com.
This library was an example project that showed you how integrate the express-stormpath library into your Express application.
Now this example has been changed to depend on the in-progress 4.0 release of express-stormpath. You can use this sample application to demostrate the work in progress on the 4.0 release
-
Current stormpath developers should obtain an Okta Developer organization by visiting https://www.okta.com/developer/signup/stormpath
-
Clone this repo to your computer, and cd into the project directory:
git clone https://github.com/stormpath/express-stormpath-sample-project.git
cd express-stormpath-sample-project
- Install the dependencies from package.json:
npm install
- Export your Okta Org URL to the environment, this was emailed to you when you signed up, and it's the URL you use to get into the Okta Admin Console:
export OKTA_ORG=https://dev-YOUR_ORG_ID.oktapreview.com/
- Using the Okta Admin Console, obtain an API Token for the Okta API by visiting Admin -> Security -> API -> Tokens, then exporting it to the environmenet:
export OKTA_APITOKEN=YOUR_TOKEN
- Run the test data script to populate your tenant with some test data:
node ./node_modules/express-stormpath/util/okta-test-data.js --apiToken=$OKTA_APITOKEN --org=$OKTA_ORG
The script will output some information, including an Okta Application ID, which you should export to the environment:
export OKTA_APPLICATION_ID=YOUR_ID
- Start the node server:
node server.js
- Visit http://localhost:3000/ in your browser. You should be able to login with the credentials that were provided by the test data script
If you are able to login, things are working! You can now use this app to test any use cases that are important to you. As you do so, you'll want to review the Express-Stormpath 4.x Changelog to understand what is changing.
The data import tool, allowing you to import your Stormpath data into Okta, will be available by the end of April. At that time you will also be able to use this application to test cases with your imported data.
Questions? Please get in touch through support@stormpath.com, your feedback is very important during this migration!