1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 01:02:54 +08:00

Add wildcard scope to oauth requests

This commit is contained in:
Dean Herbert 2018-11-28 19:02:23 +09:00
parent 0bb8d5217c
commit f42d4a9382

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();
}