Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 686 Bytes

vkontakte.md

File metadata and controls

23 lines (17 loc) · 686 Bytes

Integrating the Vkontakte Provider

Example

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

Required Additional Settings

None.

Optional Settings

Property Name Property Type Description Default Value
ApiVersion string The API version to use. "5.131"
Fields ISet<string> The profile fields to return from the API. [ "id", "first_name", "last_name", "photo_rec", "photo", "hash" ]