diff --git a/CommunityToolkit.Authentication.Uwp/WindowsProvider.cs b/CommunityToolkit.Authentication.Uwp/WindowsProvider.cs index a918efc..234521f 100644 --- a/CommunityToolkit.Authentication.Uwp/WindowsProvider.cs +++ b/CommunityToolkit.Authentication.Uwp/WindowsProvider.cs @@ -543,7 +543,7 @@ async void OnAccountCommandsRequested(AccountsSettingsPane sender, AccountsSetti private WebTokenRequest GetWebTokenRequest(WebAccountProvider provider, string clientId, string[] scopes) { - string scopesString = string.Join(',', scopes); + string scopesString = string.Join(' ', scopes); WebTokenRequest webTokenRequest = string.IsNullOrWhiteSpace(clientId) ? new WebTokenRequest(provider, scopesString)