GetLoginUserID
功能介绍
获取当前登陆用户ID
在登录成功后,通过调用GetLoginUserID
获取登录用户的UserID。
如果登录失败,获取的登录用户 UserID 为空。
使用时构造一个StringBuilder传入,userid的结果会赋值给传入的StringBuilder变量
参数详解
参数名称 | 参数类型 | 是否必填 | 描述 |
---|---|---|---|
user_id | StringBuilder | 是 | 接收user_id的StringBuilder |
返回模板
TIMResult
返回值详解
名称 | 数值类型 | 描述 |
---|---|---|
TIMResult | TIMResult | 调用接口的返回值 |
代码示例
using UnityEngine;
using UnityEngine.UI;
using com.tencent.im.unity.demo.types;
using com.tencent.imsdk.unity;
using com.tencent.imsdk.unity.types;
using com.tencent.imsdk.unity.enums;
using EasyUI.Toast;
using com.tencent.im.unity.demo.utils;
using System.Text;
public class GetLoginUser : MonoBehaviour
{
public Text Header;
public Text Result;
public Button Submit;
public Button Copy;
void Start()
{
Result = GameObject.Find("ResultText").GetComponent<Text>();
Header = GameObject.Find("HeaderText").GetComponent<Text>();
Submit = GameObject.Find("Submit").GetComponent<Button>();
if (CurrentSceneInfo.info != null)
{
Header.text = Utils.IsCn() ? CurrentSceneInfo.info.apiText + " " + CurrentSceneInfo.info.apiName : CurrentSceneInfo.info.apiName;
Submit.GetComponentInChildren<Text>().text = CurrentSceneInfo.info.apiName;
}
Copy = GameObject.Find("Copy").GetComponent<Button>();
Copy.GetComponentInChildren<Text>().text = Utils.t("Copy");
Submit.onClick.AddListener(GetLoginUserSDK);
Copy.onClick.AddListener(CopyText);
}
public void GetLoginUserSDK()
{
StringBuilder userId = new StringBuilder(128);
TIMResult res = TencentIMSDK.GetLoginUserID(userId);
Result.text = Utils.SynchronizeResult(res);
Result.text += "\nLoginUser: " + userId.ToString();
}
void CopyText()
{
Utils.Copy(Result.text);
}
void OnApplicationQuit()
{
TencentIMSDK.Uninit();
}
}