RequestEncryptedAppTicketAsync will return null on subsequent calls if they're too often

This commit is contained in:
Garry Newman 2020-02-19 14:40:21 +00:00
parent 008f317b43
commit 9bac5a32c2

View File

@ -411,6 +411,7 @@ public static async Task<string> GetStoreAuthUrlAsync( string url )
/// Requests an application ticket encrypted with the secret "encrypted app ticket key".
/// The encryption key can be obtained from the Encrypted App Ticket Key page on the App Admin for your app.
/// There can only be one call pending, and this call is subject to a 60 second rate limit.
/// If you get a null result from this it's probably because you're calling it too often.
/// This can fail if you don't have an encrypted ticket set for your app here https://partner.steamgames.com/apps/sdkauth/
/// </summary>
public static async Task<byte[]> RequestEncryptedAppTicketAsync( byte[] dataToInclude )