我读了这个链接 https://www.smartface.io/developer/guides/advanced/push-notifications/ 然后我使用了以下代码:
function Global_Events_OnStart(e) {
Notifications.remote.registerForPushNotifications({
OnSuccess : function () {
alert("Success");
alert(Notifications.remote.token);
},
OnFailure : function () {
alert("Fail");
}
});
}
我发布了应用程序然而,当我使用
时,我得到一个空字符串 alert(Notifications.remote.token);
我应该获得一个令牌,因为我想用它来发送通知 http://api.smartface.io/api/PushNotification/Send/ {}的access_token
注意:
alert("Success");
正在运作
我如何获得令牌?
答案 0 :(得分:2)
我也多次问过,但没有任何来自smartface的回复支持support@smartface.io,但没有任何答案。可能有一个smartface 4.5的错误。以前的版本按照您提供的指南工作。你可能会问他们可能是他们回复你了!