请问我正在使用Holly Schinsky关于GCM-Cordova(see the tutorial here)的教程来创建GCM phonegap Android应用程序。我已成功安装它,但我不知道如何编写代码来显示我的index.html页面上从Google gcm返回的REGID号。
感谢您的预期帮助。
答案 0 :(得分:0)
如果设备注册成功,插件将调用提供的GCM-Success功能。
window.GCM.register("[your_sender_id]", "GCM_Event", function(result){
//write regid to scope
$scope.regid = result.regid;
//use some REST API to write the regid to server
$http.post(....);
}, function(error){
//error handling
})