Skip to content

Commit 50f12ed

Browse files
committed
Minor update to 2.0.1 - socials
* Add SocialLogin functionality * Add SocialLoginAndAuthorize functionality
1 parent fd33080 commit 50f12ed

File tree

5 files changed

+236
-181
lines changed

5 files changed

+236
-181
lines changed

Core/SocialProvider.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
namespace GameSwiftSDK.Core
2+
{
3+
/// <summary>
4+
/// Available providers that can be used to login.
5+
/// </summary>
6+
public enum SocialProvider
7+
{
8+
/// <summary>
9+
/// Epic Games - https://store.epicgames.com/
10+
/// </summary>
11+
EpicGames,
12+
}
13+
}

Core/SocialProvider.cs.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ID/GameSwiftSdkId.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,6 @@ public static GameSwiftSdkId Instance
4242
/// </summary>
4343
public string AccessToken { get; private set; }
4444

45-
/// <summary>
46-
/// Stored API Refresh Token.
47-
/// </summary>
48-
public string RefreshToken { get; private set; }
49-
50-
private bool _accessTokenRetrieved;
51-
5245
[RuntimeInitializeOnLoadMethod]
5346
private static void Instantiate ()
5447
{

0 commit comments

Comments
 (0)