Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ExampleApplication/AppSettings/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class FiksIOConfig
public string FiksIoIntegrationScope { get; set; }
public string FiksIoPrivateKey { get; set; }
public string MaskinPortenAudienceUrl { get; set; }
public string MaskinPortenKeyIdentifier { get; set; }
public string MaskinPortenCompanyCertificateThumbprint { get; set; }
public string MaskinPortenCompanyCertificatePath { get; set; }
public string MaskinPortenCompanyCertificatePassword { get; set; }
Expand Down
1 change: 1 addition & 0 deletions ExampleApplication/FiksIO/FiksIOConfigurationBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public static FiksIOConfiguration CreateTestConfiguration(AppSettings appSetting
var asiceSigningPrivateKey = appSettings.FiksIOConfig.AsiceSigningPrivateKey;
var apiHost = appSettings.FiksIOConfig.ApiHost;
var apiPort = appSettings.FiksIOConfig.ApiPort;
var maskinportenKeyIdentifier = appSettings.FiksIOConfig.MaskinPortenKeyIdentifier; // Not used in this example, but could be passed to WithMaskinportenConfiguration if needed


return FiksIOConfigurationBuilder
Expand Down
1 change: 1 addition & 0 deletions ExampleApplication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Here is the example appsetting.json file with hopefully some helpful comments:
"MaskinPortenCompanyCertificateThumbprint": "<your thumbprint>", // The thumbprint for the certificate used with Maskinporten
"MaskinPortenCompanyCertificatePath": "", // The path to the certificate used with Maskinporten
"MaskinPortenCompanyCertificatePassword": "", // The password for the certificate used with Maskinporten
"MaskinPortenKeyIdentifier": "", // Maskinporten key identifier
"MaskinPortenIssuer": "", // Maskinporten issuer
"MaskinPortenTokenUrl": "https://test.maskinporten.no/token", // Token url for Maskinporten. Test: "https://test.maskinporten.no/token", Prod: "https://maskinporten.no/token"
"AsiceSigningPrivateKey": "", // The path to the private key for AsiceSigning of the payloads.
Expand Down