From f52b410bdbbce5b4ba179d9b7dc9ee9e6a6344e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Rodr=C3=ADguez?= Date: Fri, 30 Aug 2019 11:05:06 -0400 Subject: [PATCH] Update configuration reference. (#97) --- docs/aspnetcore-mvc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/aspnetcore-mvc.md b/docs/aspnetcore-mvc.md index d5596d8..8f4f611 100644 --- a/docs/aspnetcore-mvc.md +++ b/docs/aspnetcore-mvc.md @@ -113,7 +113,7 @@ The `OktaMvcOptions` class configures the Okta middleware. You can see all the a | OktaDomain | **Yes** | Your Okta domain, i.e https://dev-123456.oktapreview.com | | ClientId | **Yes** | The client ID of your Okta Application | | ClientSecret | **Yes** | The client secret of your Okta Application | -| RedirectUri | **Yes** | The location Okta should redirect to process a login. This is typically `http://{yourApp}/authorization-code/callback`. No matter the value, the redirect is handled automatically by this package, so you don't need to write any custom code to handle this route. | +| CallbackPath | **Yes** | The location Okta should redirect to process a login. This is typically `http://{yourApp}/authorization-code/callback`. No matter the value, the redirect is handled automatically by this package, so you don't need to write any custom code to handle this route. | | AuthorizationServerId | No | The Okta Authorization Server to use. The default value is `default`. | | PostLogoutRedirectUri | No | The location Okta should redirect to after logout. If blank, Okta will redirect to the Okta login page. | | Scope | No | The OAuth 2.0/OpenID Connect scopes to request when logging in. The default value is `openid profile`. |