我正在尝试使用Smartface App Studio将Parse插件配置到我的Android应用程序中。我使用Smartface App Studio 4.5版链接了http://www.smartface.io/developer/guides/advanced/push-notification-on-parse-services/#before450链接。 但是,设备未通过解析注册,甚至没有收到任何失败消息。
任何人都可以帮忙解决这个问题。提前谢谢。
答案 0 :(得分:0)
您使用的是Smartface 450,因此您应该检查的文件如下: http://www.smartface.io/developer/guides/advanced/push-notification-on-parse-services/#after450
您可以在Global.Smartface.js上使用以下代码,以查看它是否已注册:
alert("Registration is successful : \n" + Parse.getToken("Landroid/app/Activity;"));
在Page1.onShow中,您可以使用如下的解析方法:
Parse.onRegistrationFail = function () {
alert("Parse Registration failed");
};
// if the application is open and receives notification
Parse.onParsePushReceive = function () {
alert("app opened : \n\n" + Parse.getData());
};
//if the application is closed and get opened by a parse notification
if (Parse.openedByParseNotification()) {
alert("app opened by a notification : \n\n" + Parse.getData());
}