Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 752 Bytes

File metadata and controls

23 lines (17 loc) · 752 Bytes

Integrating the Line Provider

Example

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

Required Additional Settings

None.

Optional Settings

Property Name Property Type Description Default Value
Prompt bool Used to force the consent screen to be displayed even if the user has already granted all requested permissions. false
UserEmailsEndpoint string The address of the endpoint exposing the email addresses associated with the logged in user. LineAuthenticationDefaults.UserEmailsEndpoint