Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaduncan committed Oct 5, 2024
1 parent 3d3a693 commit b096093
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _source/_posts/2024-10-02-dpop-oauth-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b096093

Please sign in to comment.