Skip to content

Commit 156e356

Browse files
authoredFeb 26, 2024
Update and rename 2024-02-20-net-scim.md to 2024-02-29-net-scim.md
1 parent fdafc69 commit 156e356

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed
 

‎_source/_posts/2024-02-20-net-scim.md renamed to ‎_source/_posts/2024-02-29-net-scim.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,11 @@ Create a directory called `okta-scim-server-dotnet`. Navigate to the directory i
4141
- At this point using the *https://localhost:[port]/swagger/index.html* you will be able to see the Swagger UI. Typically, a browser tab will automatically open; if not, manually check for the URL to the Swagger UI under `Properties/launchSettings.json` and copy/paste this URL onto the browser.
4242

4343
### Setup Okta (the IdP)
44-
Before you begin, you'll need a free Okta developer account. We'll use the [Okta CLI](https://cli.okta.com/) to create an account via your terminal. Follow the installation instructions provided [here](https://cli.okta.com/manual/). On the same terminal where you ran the installation, run the `okta register` command to sign up for a new account. If you already have an account, run the command `okta login` instead.
45-
- Then, run `okta apps create`
46-
- Application name: `okta dotnet swagger client`
47-
- Type of Application: `Single Page App`
48-
- Enter your Redirect URI(s): `https://localhost:[port]]/swagger/oauth2-redirect.html` (Port is from previous testing step)
49-
- Enter your Post Logout Redirect URI(s): leave default
50-
- Keep `Issuer` and `ClientId` for configuring later
44+
Before you begin, you'll need a free Okta developer account. We'll use the [Okta CLI](https://cli.okta.com/) to create an account via your terminal.
45+
46+
{% include setup/cli.md type="spa" framework=“ASP.NET Core” loginRedirectUri="https://localhost:[port]]/swagger/oauth2-redirect.html" logoutRedirectUri="https://localhost:[port]]/swagger/oauth2-redirect.html" %}
47+
48+
Note the `Issuer` and the `Client ID`. You'll need those values for your authentication configuration coming up soon.
5149

5250
### Create the database models using Entity Framework
5351
This sample uses `EntityFrameworkCore` as the Object Relational Mapper (ORM) and `Sqlite` as the database. Let's develop the database models!

0 commit comments

Comments
 (0)