美文网首页
iOS和java后台的个推代码实现

iOS和java后台的个推代码实现

作者: 阿汤8阿义 | 来源:发表于2017-11-14 18:29 被阅读158次

    个推官网上这些都有,只是两者之间没有联系起来,JAVA写后台代码在我们iOS端是如何展示的。下面就具体讲讲他们的联系把。
    这是iOS集成代码和讲解具体作用:http://docs.getui.com/mobile/ios/xcode/#2
    这是javad :http://docs.getui.com/server/java/start/
    这里的代码写的很详细,但要两者都结合起来就比较麻烦了。
    个推java代码都是适用与安卓的,他们就是以安卓作为模板来进行编写的,所以在iOS方面就要谨慎了。
    首先我们要了解iOS接受push的格式,我们只有发送这种格式iOS才能真确接收,可以产考https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/PayloadKeyReference.html
    可视化请看图

    image.png
    image.png
    这就是我们APNS推送格式,如果不是这种格式那就可能导致无法推送到达。
    知道了iOS的接受格式,那我们写java代码就有了一个方向了。
    首先我们要找到java文档的推送模板中的透传消息模板,这个模板是适用与iOS的。
    public String getAppPush()
        {
             IGtPush push = new IGtPush(host, appKey, masterSecret);
             TransmissionTemplate template = getTemplate();
                SingleMessage message = new SingleMessage();
                message.setOffline(true);
                // 离线有效时间,单位为毫秒,可选
                message.setOfflineExpireTime(24 * 3600 * 1000);
                message.setData(template);
                // 可选,1为wifi,0为不限制网络环境。根据手机处于的网络情况,决定是否下发
                message.setPushNetWorkType(0);
                Target target = new Target();
                target.setAppId(appId);
                target.setClientId(CID1);
                //target.setAlias(Alias);
                IPushResult ret = null;
                try {
                    ret = push.pushMessageToSingle(message, target);
                } catch (RequestException e) {
                    e.printStackTrace();
                    ret = push.pushMessageToSingle(message, target, e.getRequestId());
                }
                if (ret != null) {
                    System.out.println(ret.getResponse().toString());
                } else {
                    System.out.println("服务器响应异常");
                }
            System.out.println(ret.getResponse().toString());
            return "";
        }
    public static TransmissionTemplate getTemplate() {
        TransmissionTemplate template = new TransmissionTemplate();
        template.setAppId(appId);
        template.setAppkey(appkey);
          Map<String, Object> contentMap = new HashMap<String, Object>();
            contentMap.put( "pushType", 11 );
            contentMap.put( "content", "我是消息" );
            String jsonString = JSON.toJSONString(contentMap);
            // 透传消息设置,1为强制启动应用,客户端接收到消息后就会立即启动应用;2为等待应用启动
            template.setTransmissionType(2);
            template.setTransmissionContent(jsonString);
        APNPayload payload = new APNPayload();
        //在已有数字基础上加1显示,设置为-1时,在已有数字上减1显示,设置为数字时,显示指定数字
        payload.setAutoBadge("+1");
        payload.setContentAvailable(1);
        payload.setSound("default");
        payload.setCategory("$由客户端定义");
    
        //简单模式APNPayload.SimpleMsg
       // payload.setAlertMsg(new APNPayload.SimpleAlertMsg("hello"));
    
        //字典模式使用APNPayload.DictionaryAlertMsg
        payload.setAlertMsg(getDictionaryAlertMsg());
    
        // 添加多媒体资源
        payload.addMultiMedia(new MultiMedia().setResType(MultiMedia.MediaType.video)
                    .setResUrl("http://ol5mrj259.bkt.clouddn.com/test2.mp4")
                    .setOnlyWifi(true));
    
        template.setAPNInfo(payload);
        return template;
    }
    private static APNPayload.DictionaryAlertMsg getDictionaryAlertMsg(){
        APNPayload.DictionaryAlertMsg alertMsg = new APNPayload.DictionaryAlertMsg();
        alertMsg.setBody("body");
        alertMsg.setActionLocKey("ActionLockey");
        alertMsg.setLocKey("LocKey");
        alertMsg.addLocArg("loc-args");
        alertMsg.setLaunchImage("launch-image");
        // iOS8.2以上版本支持
        alertMsg.setTitle("Title");
        alertMsg.setTitleLocKey("TitleLocKey");
        alertMsg.addTitleLocArg("TitleLocArg");
        return alertMsg;
    }
    

    这是我们推送的完整代码了,控制我们推送上面显示样式就是在getDictionaryAlertMsg()中。这里传的什么数据类型要和前端商量好,不然会出现错误(接受到推送数据,打开app就可能会导致崩溃)。
    这里我们都是以cid目标进行个推,没有广推,广推这里就不做讲述了。

    相关文章

      网友评论

          本文标题:iOS和java后台的个推代码实现

          本文链接:https://www.haomeiwen.com/subject/qwrmmxtx.html