Tag: push notification

通过GCM在Progressive Web应用程序中推送通知

在发送推送通知的时候我得到了(Uncaught(承诺)ReferenceError:require未定义(…))error.here是我的代码 const endPoint = subscription.endpoint.slice(subscription.endpoint.lastIndexOf(‘/’)+1); console.log(endPoint); var gcm = require(‘node-gcm’); var message = new gcm.Message({ notification: { title: “Hello, World”, icon: “ic_launcher”, body: “This is a notification that will be displayed ASAP.”, tag:”hello” } }); var regTokens = [endPoint]; var sender = new gcm.Sender(‘AIzaSyD9Bcxd_MQZFoGjO1y_hPm-xUdgnM25Ny4’); //API Key // Now the sender can be used to send […]