[0.9.4] - 2025-02-28
- Added GetLoyaltyUrl to StashLauncher.
//Get the loyalty URL from Stash API and open it in the browser. Requires playerID & auth token.
try
{
LoyaltyUrlResponse loyaltyUrl = await StashLauncher.GetLoyaltyUrl(InternalPlayerId, IdToken);
Application.OpenURL(loyaltyUrl.url);
}
catch (StashRequestError e)
{
Debug.LogError(e.Message);
}