Integrating the Webflow Provider
March 23, 2025 ยท View on GitHub
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.