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
-[Accessing specific features like CIBA](#accessing-specific-features-like-ciba)
11
13
12
14
## Login and Logout
13
15
Triggering login or logout is done using ASP.NET's `HttpContext`:
@@ -445,9 +447,9 @@ public class LogoutModel : PageModel
445
447
}
446
448
```
447
449
448
-
# Accessing Auth0.AuthenticationApi features
450
+
##Accessing Auth0.AuthenticationApi features
449
451
`Auth0.AuthenticationApi` package is our standalone Authentication package that supports a wide range of
450
-
options for Authentication. We can access these features like below :
452
+
options for Authentication. For example, you can use it to implement the [client credentials flow](https://auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow), as shown below :
451
453
452
454
```csharp
453
455
/// Register the dependency in the container as below.
@@ -477,7 +479,7 @@ public async Task LoginWithAuthenticationApi()
477
479
}
478
480
```
479
481
480
-
# Accessing specific features like CIBA
482
+
##Accessing specific features like CIBA
481
483
Although `Auth0.AuthenticationApi` package has a wide range of options for Authentication.
482
484
We can access the CIBA feature as below. It aims to make it easy to integrate into an appllication.
483
485
@@ -486,7 +488,7 @@ We can access the CIBA feature as below. It aims to make it easy to integrate in
0 commit comments