Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 521 Bytes

File metadata and controls

22 lines (16 loc) · 521 Bytes

Integrating the Reddit Provider

Example

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

Required Additional Settings

None.

Optional Settings

Property Name Property Type Description Default Value
UserAgent string? The User-Agent string to use for Reddit API requests. null