Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 456 Bytes

smartsheet.md

File metadata and controls

23 lines (16 loc) · 456 Bytes

Integrating the Smartsheet Provider

Example

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

            // At least one scope must be passed
            options.Scope.Add("READ_SHEETS");
        });

Required Additional Settings

None.

Optional Settings

None.