Merge pull request #3775 from peppy/add-api-scope

Add wildcard scope to oauth requests
This commit is contained in:
Dean Herbert 2018-11-29 00:27:24 +09:00 committed by GitHub
commit 6e9da49a61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,6 +178,7 @@ namespace osu.Game.Online.API
AddParameter("grant_type", GrantType);
AddParameter("client_id", ClientId);
AddParameter("client_secret", ClientSecret);
AddParameter("scope", "*");
base.PrePerform();
}