其他分享
首页 > 其他分享> > goeasy的ios无后台接收消息的一些bug解决

goeasy的ios无后台接收消息的一些bug解决

作者:互联网

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
这个是他们的介绍。

标签:goeasy,allowNotification,通知,ios,io,true,bug,pubsub
来源: https://blog.csdn.net/userzou/article/details/122039759