首先看一下腾讯信鸽的官方文档提供的IOS静默消息推送的JSON数据格式
{
    "ios":{
        "aps": {
            "content-available": 1
        },
        "custom": {
            "key1": "value1",
            "key2": "value2"
        },
        "xg": "oops"
    }
}
直接通过提供的SDK可以对请求进行组装
// ios透传消息组装
	messageIOS = new MessageIOS();
	Aps aps = new Aps();
	aps.setContent_available(1);
	messageIOS.setAps(aps);
	messageIOS.setCustom(customContent);
	Message newMessage = new Message();
	newMessage.setIos(messageIOS);
// 消息体组装
	PushAppRequest request = new PushAppRequest();
// 消息体
	request.setMessage(message);
// 推送的消息类型
	request.setMessage_type(MessageType.message);
// 推送环境
	request.setEnvironment(Environment.dev);
// 多包名推送
	request.setMulti_pkg(true);
// 客户平台类型
	request.setPlatform(Platform.ios);
// 单设备token推送
	request.setAudience_type(AudienceType.token);
	request.setToken_list(token);
// 推送
	JSONObject ret = xingeIOS.pushApp(request.toString());
这个时候注意:推送是可以成功的,但是这个不单单是静默推送,在IOS客户端会走两个回调,一个是静默推送的回调,还有一个是Alert的回调。

经过很久的搜寻,在xinge:1.2.0的jar包中,Aps类(这是IOS消息独有的一个字段)

package com.tencent.xinge.bean;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

@JsonInclude(Include.NON_NULL)
public class Aps {
    @JsonProperty(
        value = "alert",
        required = true
    )
    private Alert alert;
    @JsonProperty(
        value = "badge",
        required = true
    )
    private int badge;
    @JsonProperty("sound")
    private String sound;
    @JsonProperty("content-available")
    private int content_available;
    @JsonProperty("category")
    private String category;
    @JsonProperty("thread-id")
    private String thread_id;
.......

注意,注意,注意 这个位置的badge是一个必须的参数,但是对于静默推送的IOS中是不能有这些字段的,所以,实际上它推送的请求体数据是这样的:

{
    "ios":{
        "aps": {
            "content-available": 1
            "badge":0
        },
        "custom": {
            "key1": "value1",
            "key2": "value2"
        },
        "xg": "oops"
    }
}

看见没,看见没,看见没 这是多了一个参数的,但是腾讯信鸽官方文档说:苹果推送服务(APNs)特有的,其中最重要的键值对如下content-available:标识消息类型(必须为1),且不能包含alert、sound、badge_type字段 这个也就是Aps类中的 badge字段。

但是badge是int类型的,int类型的…< -_-!>…不是Integer包装类型,所以它会默认初始化为0,尤其是这个东西还是必须的,所以你实际传递出去的参数很可惜多了个字段,导致的结果就是IOS客户端接收的时候就会走两个回调,一个静默消息,一个Alert消息。

解决方法

笔者的解决方法就是直接写一个一模一样的类(注意,将int类型的参数改为Integer类型

其他的忽略,因为腾讯信鸽SDK中没有对Account账户的操作进行封装,所以笔者也算是在SDK基础上再开发了

静默推送通知 iOS 手机静默通知_腾讯信鸽


保证包名一样,类名一样,然后直接Copy一份原来SDK里面的代码,将类型改掉(int—>Integer)

package com.tencent.xinge.bean;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class Aps {
    @JsonProperty(value ="alert", required = true)
    private Alert alert;
    @JsonProperty(value ="badge", required = true)
    private Integer badge;
    @JsonProperty(value ="sound")
    private String sound;
    @JsonProperty(value ="content-available")
    private int content_available;
    @JsonProperty(value ="category")
    private String category;
........

之后就直接通过这个类进行Request请求的组装

最后你就可以得到正确的结果了。

PS: 笔者的这个方法仅仅在SpringBoot搭建的项目中试验过,其他的框架不知道行不行,但是如果实在不行的话,也只能自己直接照着那个JSON数据格式写,之后通过腾讯信鸽的Restful的访问风格直接加到URL后面也行。