- 发布:2021-08-11 09:43
- 更新:2021-08-11 09:43
- 阅读:328
产品分类: uniapp/App
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 11.5.1
HBuilderX类型: 正式
HBuilderX版本号: 3.1.22
手机系统: 全部
手机机型: 全部
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
测试过的手机:
示例代码:
// 服务端代码(JAVA)
public static ApiContext build() {
ApiContext context = new ApiContext();
GtApiConfiguration apiConfiguration = new GtApiConfiguration();
context.configuration = apiConfiguration;
apiConfiguration.setAppId("----");
apiConfiguration.setAppKey("----");
apiConfiguration.setMasterSecret(" ------ ");
// 接口调用前缀,请查看文档: 接口调用规范 -> 接口前缀, 可不填写appId
apiConfiguration.setDomain("https://restapi.getui.com/v2/");
context.cid = " ---- ";
return context;
}
// APP 代码
plus.push.addEventListener(
'receive',
function(msg) {
try {
// 创建本地通知
if (msg.payload != 'localMSG' && msg.aps) {
let title = msg.aps.alert.title;
let msgbody = msg.aps.alert.body;
plus.push.createMessage(title + ':' + msgbody, 'localMSG');
}
} catch (e) {
plus.nativeUI.alert(e.message + '\n' + JSON.stringify(msg), null, 'Receive错误信息');
}
},
false
);
// 服务端代码(JAVA)
public static ApiContext build() {
ApiContext context = new ApiContext();
GtApiConfiguration apiConfiguration = new GtApiConfiguration();
context.configuration = apiConfiguration;
apiConfiguration.setAppId("----");
apiConfiguration.setAppKey("----");
apiConfiguration.setMasterSecret(" ------ ");
// 接口调用前缀,请查看文档: 接口调用规范 -> 接口前缀, 可不填写appId
apiConfiguration.setDomain("https://restapi.getui.com/v2/");
context.cid = " ---- ";
return context;
}
// APP 代码
plus.push.addEventListener(
'receive',
function(msg) {
try {
// 创建本地通知
if (msg.payload != 'localMSG' && msg.aps) {
let title = msg.aps.alert.title;
let msgbody = msg.aps.alert.body;
plus.push.createMessage(title + ':' + msgbody, 'localMSG');
}
} catch (e) {
plus.nativeUI.alert(e.message + '\n' + JSON.stringify(msg), null, 'Receive错误信息');
}
},
false
);
操作步骤:
1、调用服务端个推V2 Java SDK (成功)
2、APP 收不到消息内容
1、调用服务端个推V2 Java SDK (成功)
2、APP 收不到消息内容
预期结果:
期望APP可以收到消息
期望APP可以收到消息
实际结果:
实际收不到。
上个月初还可以的。这个月就不行了,推送代码没有调整过
实际收不到。
上个月初还可以的。这个月就不行了,推送代码没有调整过
bug描述:
/*
服务端采用个推2.0版本Java sdk测试,ApiResult{code=0, msg='success', data}
IOS APP 收到消息内容为:{"aps": null, "content":"", "payload":"", "title":"有值","type":"receive"}
Android 根据收到消息
*/
0 个回复