Browse Source

Add locations to allow scopes to dictionary

pull/223/head
Christian Arenas 7 years ago
parent
commit
ef8f14a212
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Mobile/eShopOnContainers/eShopOnContainers.Core/Services/Identity/IdentityService.cs

+ 1
- 1
src/Mobile/eShopOnContainers/eShopOnContainers.Core/Services/Identity/IdentityService.cs View File

@ -16,7 +16,7 @@ namespace eShopOnContainers.Core.Services.Identity
dic.Add("client_id", "xamarin");
dic.Add("client_secret", "secret");
dic.Add("response_type", "code id_token token");
dic.Add("scope", "openid profile basket orders offline_access");
dic.Add("scope", "openid profile basket orders locations offline_access");
dic.Add("redirect_uri", GlobalSetting.Instance.IdentityCallback);
dic.Add("nonce", Guid.NewGuid().ToString("N"));


Loading…
Cancel
Save