Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 618 Bytes

bitbucket.md

File metadata and controls

22 lines (16 loc) · 618 Bytes

Integrating the Bitbucket Provider

Example

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

Required Additional Settings

None.

Optional Settings

Property Name Property Type Description Default Value
UserEmailsEndpoint string The address of the endpoint exposing the email addresses associated with the logged in user. BitbucketAuthenticationDefaults.UserEmailsEndpoint