Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 781 Bytes

kloudless.md

File metadata and controls

25 lines (18 loc) · 781 Bytes

Integrating the Kloudless Provider

Example

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

            options.Scope.Clear();
            options.Scope.Add(KloudlessAuthenticationConstants.Scopes.Calendar);
        });

Required Additional Settings

None.

Optional Settings

Property Name Property Type Description Default Value
Scope ICollection<string> The scope(s) you want to use on Kloudless, see documentation. KloudlessAuthenticationConstants.Scopes.Any