如何在Unity 5中获取设备的设备令牌?

时间:2015-06-20 07:22:21

标签: unity3d server unityscript devicetoken

我想获取设备令牌,我不想使用更新功能。

现在我正在使用以下功能:

if (!tokenSent) {
    token =UnityEngine.iOS.NotificationServices.deviceToken;
    if (token != null) {
        // send token to a provider
        print ("My device Token");
        hexToken= "%" + System.BitConverter.ToString(token).Replace('-', '%');
        tokenSent = true;
    }
}

0 个答案:

没有答案