Skip to content

Commit ee472c1

Browse files
authored
Update 2024-02-29-net-scim.md
1 parent f3e8b95 commit ee472c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_source/_posts/2024-02-29-net-scim.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ There are two primary components for a SCIM integration. The first is the *SCIM
3636
### Create a .NET project
3737
Create a directory called `okta-scim-server-dotnet`. Navigate to the directory in your terminal, then run the following commands:
3838
```
39-
`dotnet new webapi` (Creates a new API project)
40-
`dotnet dev-certs https --trust` (Trust the self-signed TLS certs)
39+
dotnet new webapi (Creates a new API project)
40+
dotnet dev-certs https --trust (Trust the self-signed TLS certs)
4141
```
4242

4343
### Test the .NET project using Swagger UI
@@ -49,7 +49,7 @@ Create a directory called `okta-scim-server-dotnet`. Navigate to the directory i
4949
### Setup Okta (the IdP)
5050
{% include setup/cli.md type="spa" loginRedirectUri="http://localhost:7094/swagger/oauth2-redirect.html" logoutRedirectUri="http://localhost:7094" %}
5151

52-
Note the `Issuer` and the `Client ID`. You'll need those values for your authentication configuration coming up soon.
52+
Take note of the `Issuer` and the `Client ID`. You'll need those values for your authentication configuration coming up soon.
5353

5454
### Create the database models using Entity Framework
5555
This sample uses `EntityFrameworkCore` as the Object Relational Mapper (ORM) and `Sqlite` as the database. Let's develop the database models!
@@ -1255,7 +1255,7 @@ Update `Okta` section in `Properties/appsettings.json` with the *Client ID* from
12551255
}
12561256
```
12571257

1258-
>**Note**If you use the template authorization server called default as mentioned [here](https://developer.okta.com/docs/concepts/auth-servers/#default-custom-authorization-server), then set the AuthorizationServerId to the value "default". As shown below.
1258+
>**Note**: If you use the template authorization server called default as mentioned [here](https://developer.okta.com/docs/concepts/auth-servers/#default-custom-authorization-server), then set the AuthorizationServerId to the value "default". As shown below.
12591259
12601260
The `Properties/appsettings.json` file should now look like this:
12611261

0 commit comments

Comments
 (0)