Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 707 Bytes

File metadata and controls

23 lines (17 loc) · 707 Bytes

Integrating the Patreon Provider

Example

services.AddAuthentication(options => /* Auth configuration */)
        .AddPatreon(options =>
        {
            options.ClientId = "my-client-id";
            options.ClientSecret = "my-client-secret";
        });

Required Additional Settings

None.

Optional Settings

Property Name Property Type Description Default Value
Fields ISet<string> The list of fields to retrieve from the user information endpoint. [ "first_name", "full_name", "last_name", "thumb_url", "url" ]
Includes ISet<string> The list of related data to include from the user information endpoint. []