From b09609388ebe5e9e9a37629989a74c43c3a06c42 Mon Sep 17 00:00:00 2001 From: Alisa <7586237+alisaduncan@users.noreply.github.com> Date: Sat, 5 Oct 2024 06:21:48 -0700 Subject: [PATCH] fix spacing --- _source/_posts/2024-10-02-dpop-oauth-node.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_source/_posts/2024-10-02-dpop-oauth-node.md b/_source/_posts/2024-10-02-dpop-oauth-node.md index 2a8cfa4ea..dc3d377a1 100644 --- a/_source/_posts/2024-10-02-dpop-oauth-node.md +++ b/_source/_posts/2024-10-02-dpop-oauth-node.md @@ -184,10 +184,10 @@ module.exports = oktaService; Add a new file named `app.js` in the project root folder. This is the entry point for running our Node.js service application. In this file, we'll do the following - * Import `oktaSevice` - * Create an async wrapper to execute asynchronous code - * Authenticate to Okta by calling `oktaService.authenticate()` - * Validate the previous step by listing users using a `GET` call to Okta's `/api/v1/users` endpoint + * Import `oktaService` + * Create an async wrapper to execute asynchronous code + * Authenticate to Okta by calling `oktaService.authenticate()` + * Validate the previous step by listing users using a `GET` call to Okta's `/api/v1/users` endpoint Paste the following code into the `app.js` file: ```javascript