TapLogin-Unity/Runtime/Public/AccessToken.cs

58 lines
1.5 KiB
C#
Raw Normal View History

2023-08-16 18:17:49 +08:00
using System;
using System.Collections.Generic;
using TapTap.Common;
using UnityEngine;
namespace TapTap.Login
{
public class AccessToken
{
public string kid;
public string accessToken;
public string tokenType;
public string macKey;
public string macAlgorithm;
public HashSet<string> scopeSet;
public AccessToken(string json)
{
var dic = Json.Deserialize(json) as Dictionary<string, object>;
kid = SafeDictionary.GetValue<string>(dic, "kid");
accessToken = SafeDictionary.GetValue<string>(dic, "access_token");
tokenType = SafeDictionary.GetValue<string>(dic, "token_type");
macKey = SafeDictionary.GetValue<string>(dic, "mac_key");
macAlgorithm = SafeDictionary.GetValue<string>(dic, "mac_algorithm");
string scopeStr = SafeDictionary.GetValue<string>(dic, "scope");
if (string.IsNullOrEmpty(scopeStr))
{
scopeSet = new HashSet<string>();
}
else
{
try
{
scopeSet = new HashSet<string>(scopeStr.Split(' '));
}
catch (Exception e)
{
scopeSet = new HashSet<string>();
}
}
}
public AccessToken()
{
}
public string ToJson()
{
return JsonUtility.ToJson(this);
}
}
}