|
@@ -13,6 +13,7 @@ namespace ET.Server
|
|
|
{
|
|
|
protected override void Awake(GameDouyinComponent self)
|
|
|
{
|
|
|
+ self.InitAccessToken();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -94,14 +95,14 @@ namespace ET.Server
|
|
|
/// <returns></returns>
|
|
|
public static JObject GetRoomInfo(this GameDouyinComponent self, string token)
|
|
|
{
|
|
|
- if (string.IsNullOrEmpty(self.AccessToken))
|
|
|
+ if (string.IsNullOrEmpty(self.AccessToken.Trim()))
|
|
|
{
|
|
|
Log.Error($"InitRoomId...AccessToken为null");
|
|
|
return null;
|
|
|
}
|
|
|
// 请求头
|
|
|
Dictionary<string, string> head = new Dictionary<string, string>();
|
|
|
- head.Add("X-Token", self.AccessToken);
|
|
|
+ head.Add("X-Token", self.AccessToken.Trim());
|
|
|
// 参数
|
|
|
JObject param = new JObject();
|
|
|
param.Add("token", token);
|