我想获取设备令牌,我不想使用更新功能。
现在我正在使用以下功能:
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;
}
}