You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Runtime/Game/LootLockerSDKManager.cs
+58-1Lines changed: 58 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -521,7 +521,7 @@ public static void RefreshGoogleSession(string refresh_token, Action<LootLockerG
521
521
/// The Apple sign in platform must be enabled in the web console for this to work.
522
522
/// </summary>
523
523
/// <param name="authorization_code">Authorization code, provided by apple</param>
524
-
/// <param name="onComplete">onComplete Action for handling the response of type for handling the response of type LootLockerAppleSessionResponse</param>
524
+
/// <param name="onComplete">onComplete Action for handling the response of type LootLockerAppleSessionResponse</param>
@@ -581,6 +581,63 @@ public static void RefreshAppleSession(string refresh_token, Action<LootLockerAp
581
581
});
582
582
}
583
583
584
+
/// <summary>
585
+
/// Create a new session for Sign in with Apple Game Center
586
+
/// The Apple Game Center sign in platform must be enabled in the web console for this to work.
587
+
/// </summary>
588
+
/// <param name="bundleId">The Apple Game Center bundle id of your app</param>
589
+
/// <param name="playerId">The user's player id in Apple Game Center</param>
590
+
/// <param name="publicKeyUrl">The url of the public key generated from Apple Game Center Identity Verification</param>
591
+
/// <param name="signature">The signature generated from Apple Game Center Identity Verification</param>
592
+
/// <param name="salt">The salt of the signature generated from Apple Game Center Identity Verification</param>
593
+
/// <param name="timestamp">The timestamp of the verification generated from Apple Game Center Identity Verification</param>
594
+
/// <param name="onComplete">onComplete Action for handling the response of type for handling the response of type LootLockerAppleGameCenterSessionResponse</param>
/// Refresh a previous session signed in with Apple Game Center
617
+
/// A response code of 401 (Unauthorized) means the refresh token has expired and you'll need to sign in again
618
+
/// The Apple Game Center sign in platform must be enabled in the web console for this to work.
619
+
/// </summary>
620
+
/// <param name="onComplete">onComplete Action for handling the response of type for handling the response of type LootLockerAppleGameCenterSessionResponse</param>
0 commit comments