Update the web provider contribution guide to use the new APIs

This commit is contained in:
Kévin Chalet 2022-10-06 16:29:14 +02:00
parent e8f7928694
commit a58a3609c0

View File

@ -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" /> > UserinfoEndpoint="https://{tenant}.zendesk.com/api/v2/users/me" />
> </Environment> > </Environment>
> >
> <Setting Name="Tenant" Type="String" Required="true" > <Setting PropertyName="Tenant" ParameterName="tenant" Type="String" Required="true"
> Description="Gets or sets the tenant used to identify the Zendesk instance." /> > Description="The tenant used to identify the Zendesk instance" />
> </Provider> > </Provider>
> ``` > ```
@ -150,11 +150,11 @@ options.SetRedirectionEndpointUris(
// Register the Web providers integrations. // Register the Web providers integrations.
options.UseWebProviders() options.UseWebProviders()
// ... other providers... // ... other providers...
.Add[provider name](new() .Use[provider name](options =>
{ {
ClientId = "bXgwc0U3N3A3YWNuaWVsdlRmRWE6MTpjaQ", options.SetClientId("bXgwc0U3N3A3YWNuaWVsdlRmRWE6MTpjaQ");
ClientSecret = "VcohOgBp-6yQCurngo4GAyKeZh0D6SUCCSjJgEo1uRzJarjIUS", options.SetClientSecret("VcohOgBp-6yQCurngo4GAyKeZh0D6SUCCSjJgEo1uRzJarjIUS");
RedirectUri = new Uri("https://localhost:44381/signin-[provider name]", UriKind.Absolute) options.SetRedirectUri("https://localhost:44381/signin-[provider name]");
}); });
``` ```