You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _source/_posts/2024-02-29-net-scim.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,8 @@ There are two primary components for a SCIM integration. The first is the *SCIM
36
36
### Create a .NET project
37
37
Create a directory called `okta-scim-server-dotnet`. Navigate to the directory in your terminal, then run the following commands:
38
38
```
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)
41
41
```
42
42
43
43
### Test the .NET project using Swagger UI
@@ -49,7 +49,7 @@ Create a directory called `okta-scim-server-dotnet`. Navigate to the directory i
49
49
### Setup Okta (the IdP)
50
50
{% include setup/cli.md type="spa" loginRedirectUri="http://localhost:7094/swagger/oauth2-redirect.html" logoutRedirectUri="http://localhost:7094" %}
51
51
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.
53
53
54
54
### Create the database models using Entity Framework
55
55
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
1255
1255
}
1256
1256
```
1257
1257
1258
-
>**Note**Ifyouusethetemplateauthorizationservercalleddefaultasmentioned [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**:Ifyouusethetemplateauthorizationservercalleddefaultasmentioned [here](https://developer.okta.com/docs/concepts/auth-servers/#default-custom-authorization-server), then set the AuthorizationServerId to the value "default". As shown below.
1259
1259
1260
1260
The `Properties/appsettings.json` fileshouldnowlooklikethis:
0 commit comments