Skip to content

Latest commit

 

History

History
169 lines (136 loc) · 5.13 KB

getting-started-grandid-bankid.md

File metadata and controls

169 lines (136 loc) · 5.13 KB

Getting started with GrandID

Preparation

  1. Read through the GrandID documentation. This ensures you have a basic understanding of the terminology as well as how the flow and security works.
  2. Get in touch with Svensk E-identitet to receive keys, you need these:
    • ApiKey
    • BankIdServiceKey (BankID) Note: ActiveLogin is built for the latest version of GrandID where only one key is used. Please get in touch with Svensk E-identitet if you need to upgrade to this new version.
  3. Add them to your config, for example:
{
  "ActiveLogin:GrandId:ApiKey": "TODO-ADD-YOUR-VALUE",
  "ActiveLogin:GrandId:BankIdServiceKey": "TODO-ADD-YOUR-VALUE"
}

Environments

Simulated environment

For trying out quickly (without the need of keys) you can use an in-memory implementation of the API by using .UseSimulatedEnvironment(). This could also be good when writing tests.

Simulated environment with no config

services
    .AddAuthentication()
    .AddGrandId(builder =>
    {
        builder
            .UseDevelopmentEnvironment()
            .AddBankIdSameDevice(options => { })
            .AddBankIdOtherDevice(options => { });
    });

Development environment with custom person info

The faked name and personal identity number can also be customized like this.

services
    .AddAuthentication()
    .AddGrandId(builder =>
    {
        builder
            .UseDevelopmentEnvironment("Alice", "Smith", "199908072391")
            .AddBankIdSameDevice(options => { })
            .AddBankIdOtherDevice(options => { });
    });

Production environment

This will use the real REST API for GrandID, connecting to either the Test or Production environment. It requires you to have the API keys described under Preparation above.

services.AddAuthentication()
        .AddGrandId(builder =>
    {
        builder
            .UseProductionEnvironment(config => {
                config.ApiKey = Configuration.GetValue<string>("ActiveLogin:GrandId:ApiKey");
            })
            ...
    });

Test environment

These samples uses the production environment, to use the test environment, simply swap .UseProductionEnvironment() with .UseTestEnvironment().

services.AddAuthentication()
        .AddGrandId(builder =>
    {
        builder
            .UseTestEnvironment(config => {
                config.ApiKey = Configuration.GetValue<string>("ActiveLogin:GrandId:ApiKey");
		...
            })
            ...
    });

Samples

Using schemes for same device and other device

  • Same device: Launches the BankID app on the same device, no need to enter any personal identity number.
  • Other device: You enter your personal identity number and can manually launch the app on your smartphone.
services
    .AddAuthentication()
    .AddGrandId(builder =>
    {
        builder
            .UseProductionEnvironment(config => {
                config.ApiKey = Configuration.GetValue<string>("ActiveLogin:GrandId:ApiKey");
                config.BankIdServiceKey = Configuration.GetValue<string>("ActiveLogin:GrandId:BankIdServiceKey");
	    })
            .AddBankIdSameDevice()
            .AddBankIdOtherDevice();
    });

Using schemas for choose device

This option will display a UI at GrandID where the user can choose between same or other device.

services
    .AddAuthentication()
    .AddGrandId(builder =>
    {
        builder
            .UseProductionEnvironment(config => {
                config.ApiKey = Configuration.GetValue<string>("ActiveLogin:GrandId:ApiKey");
                config.BankIdServiceKey = Configuration.GetValue<string>("ActiveLogin:GrandId:BankIdServiceKey");
	    })
            .AddBankIdChooseDevice();
    });

Customizing schemas

By default, Add*Device will use predefined schemas and display names, but they can be changed.

services
    .AddAuthentication()
    .AddGrandId(builder =>
    {
        builder
            .UseProductionEnvironment(config => {
                config.ApiKey = Configuration.GetValue<string>("ActiveLogin:GrandId:ApiKey");
                config.BankIdServiceKey = Configuration.GetValue<string>("ActiveLogin:GrandId:BankIdServiceKey");
	    })
            .AddBankIdSameDevice("custom-auth-scheme", "Custom display name", options => { ... })
            .AddBankIdOtherDevice(GrandIdDefaults.BankIdOtherDeviceAuthenticationScheme, "Custom display name", options => { ... });
    });

Customizing GrandID

GrandId options allows you to set and override some options such as these.

.AddBankIdOtherDevice(options =>
{
	// Issue birthdate claim based on data extracted from the personal identity number
	options.IssueBirthdateClaim = true;

	// Issue gender claim based on data extracted from the personal identity number
	options.IssueGenderClaim = true;
});

If you want to apply some options for all BankID schemes, you can do so by using .ConfigureBankId(...).

.ConfigureBankId(options =>
{
    options.IssueBirthdateClaim = true;
    options.IssueGenderClaim = true;
});