Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 688 Bytes

File metadata and controls

23 lines (17 loc) · 688 Bytes

Integrating the QQ Provider

Example

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

Required Additional Settings

None.

Optional Settings

Property Name Property Type Description Default Value
ApplyForUnionId bool Set if the UnionID should be retrieved and put into user claims. false
UserIdentificationEndpoint string The address of the endpoint to use for user identification. QQAuthenticationDefaults.UserIdentificationEndpoint