services.AddAuthentication(options => /* Auth configuration */)
.AddBattleNet(options =>
{
options.ClientId = "my-client-id";
options.ClientSecret = "my-client-secret";
options.Region = BattleNetAuthenticationRegion.Europe;
});
Property Name | Property Type | Description | Default Value |
---|---|---|---|
Region |
BattleNetAuthenticationRegion |
The region used to determine the appropriate API endpoints. | BattleNetAuthenticationRegion.America |
None.