diff --git a/Storage/Storage/Public/User/LCUser.cs b/Storage/Storage/Public/User/LCUser.cs index b5eee2d1..212fda18 100644 --- a/Storage/Storage/Public/User/LCUser.cs +++ b/Storage/Storage/Public/User/LCUser.cs @@ -851,5 +851,12 @@ public static async Task> StrictlyFind(LCUserQueryCon } return users.AsReadOnly(); } + + public static async Task RetrieveShortToken() { + string path = "storage/1.1/users/tap-support/identity"; + Dictionary response = await LCCore.HttpClient.Get>(path, + withAPIVersion: false); + return response["identityToken"] as string; + } } }