Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 712 Bytes

stackexchange.md

File metadata and controls

25 lines (19 loc) · 712 Bytes

Integrating the StackExchange Provider

Example

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

Required Additional Settings

| Property Name | Property Type | Description | |:--|:--|:--|:--| | RequestKey | string | The application request key. |

Optional Settings

Property Name Property Type Description Default Value
Site string The site the users being authenticated are registered with. "StackOverflow"