Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 741 Bytes

File metadata and controls

23 lines (16 loc) · 741 Bytes

Integrating the Webflow Provider

Important

When you create the OAuth application in Webflow, make sure to enable the Authorized user (Read-only) scope. If this scope is not enabled, retrieving the user information will fail, resulting in the entire authorization flow to fail.

Example

services.AddAuthentication(options => /* Auth configuration */)
        .AddWebflow(options =>
        {
            options.ClientId = configuration["Webflow:ClientId"] ?? string.Empty;
            options.ClientSecret = configuration["Webflow:ClientSecret"] ?? string.Empty;
        })

Required Additional Settings

None.

Optional Settings

None.