From a58a3609c0659727ee384ba42530671404b001e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Thu, 6 Oct 2022 16:29:14 +0200 Subject: [PATCH] Update the web provider contribution guide to use the new APIs --- guides/contributing-a-new-web-provider.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guides/contributing-a-new-web-provider.md b/guides/contributing-a-new-web-provider.md index 0ec7330..e0ac9a3 100644 --- a/guides/contributing-a-new-web-provider.md +++ b/guides/contributing-a-new-web-provider.md @@ -129,8 +129,8 @@ the OpenIddict client to communicate with the remote authorization server. For i > UserinfoEndpoint="https://{tenant}.zendesk.com/api/v2/users/me" /> > > -> Description="Gets or sets the tenant used to identify the Zendesk instance." /> +> Description="The tenant used to identify the Zendesk instance" /> > > ``` @@ -150,11 +150,11 @@ options.SetRedirectionEndpointUris( // Register the Web providers integrations. options.UseWebProviders() // ... other providers... - .Add[provider name](new() + .Use[provider name](options => { - ClientId = "bXgwc0U3N3A3YWNuaWVsdlRmRWE6MTpjaQ", - ClientSecret = "VcohOgBp-6yQCurngo4GAyKeZh0D6SUCCSjJgEo1uRzJarjIUS", - RedirectUri = new Uri("https://localhost:44381/signin-[provider name]", UriKind.Absolute) + options.SetClientId("bXgwc0U3N3A3YWNuaWVsdlRmRWE6MTpjaQ"); + options.SetClientSecret("VcohOgBp-6yQCurngo4GAyKeZh0D6SUCCSjJgEo1uRzJarjIUS"); + options.SetRedirectUri("https://localhost:44381/signin-[provider name]"); }); ```