Class LinkedInOAuthOptions
- Namespace
- Builvero.Application.Options
- Assembly
- Builvero.Application.dll
Configuration options for LinkedIn OAuth authentication.
public sealed class LinkedInOAuthOptions
- Inheritance
-
LinkedInOAuthOptions
- Inherited Members
Remarks
These credentials are obtained from the LinkedIn Developer Portal (My Apps > Your App > Auth tab). The OAuth 2.0 Client ID and Client Secret are required to enable LinkedIn sign-in.
Properties
ClientId
Gets or sets the LinkedIn OAuth 2.0 Client ID.
public string ClientId { get; init; }
Property Value
- string
- Configuration options for LinkedIn OAuth authentication.
Remarks
This is the OAuth 2.0 Client ID obtained from LinkedIn Developer Portal. Also known as the "Client ID" in LinkedIn's OAuth 2.0 settings.
ClientSecret
Gets or sets the LinkedIn OAuth 2.0 Client Secret.
public string ClientSecret { get; init; }
Property Value
- string
- Configuration options for LinkedIn OAuth authentication.
Remarks
This is the OAuth 2.0 Client Secret obtained from LinkedIn Developer Portal. Should be kept secure and not committed to source control. Use environment variables or secure configuration management in production.