const goeasy = GoEasy.getInstance({
host: "hangzhou.goeasy.io", //若是新加坡区域:singapore.goeasy.io
appkey: "",
modules: ['pubsub', 'im'], //根据需要,传入‘pubsub’或'im’,或数组方式同时传入
// true表示支持通知栏提醒,false则表示不需要通知栏提醒
allowNotification:true //仅有效于app,小程序和H5将会被自动忽略
});
appKey:对应goeasy的
主要是allowNotification:true 一定要设置为true才能在无后台的时候接收到通知。
打开项目的manifest.json文件,在APP模块配置中,勾选push,不勾选unipush。
制作自定义基座的时候,选测试环境,正式用正式环境。
mainfest.json中原生插件一定要启用。
问题:我之前是上面没有设置true,少了一部分导致通知不了。是在不行问一下客服。
https://www.goeasy.io/cn/docs/goeasy-2.x/common/notification/apns.html
这个是他们的介绍。