极光推送:
因为公司项目需要进行消息的推送,所以参考了一些网上的资料和自己写了一些测试类,使用第三方极光推送进行推送消息。
一、导入依赖
cn.jpush.api
jpush-client
3.4.6
<dependency>
<groupId>cn.jpush.api</groupId>
<artifactId>jiguang-common</artifactId>
<version>1.1.8</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.6.Final</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3</version>
</dependency>
<!--极光推送end-->
二、写测试类:
package com.ls.common.push.jiguang;
import cn.jiguang.common.ClientConfig;
import cn.jiguang.common.resp.APIConnectionException;
import cn.jiguang.common.resp.APIRequestException;
import cn.jpush.api.JPushClient;
import cn.jpush.api.push.PushResult;
import cn.jpush.api.push.model.Options;
import cn.jpush.api.push.model.Platform;
import cn.jpush.api.push.model.PushPayload;
import cn.jpush.api.push.model.audience.Audience;
import cn.jpush.api.push.model.notification.AndroidNotification;
import cn.jpush.api.push.model.notification.IosNotification;
import cn.jpush.api.push.model.notification.Notification;
import com.alibaba.fastjson.JSONObject;
import com.ls.ibitpark.app.vo.PushVo;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import lombok.extern.slf4j.Slf4j;
/**
- @Auther DouJunBin
- @Date 2020/9/15
*/
@Slf4j
public class JiGuangPush {
protected static final String APP_KEY = “xxxxxxxxx”;
protected static final String MASTER_SECRET = “xxxxxxxx”;
private final static Boolean ApnsProduction = true;//上线之后要改为true
public static void main(String[] args) {
//testSendToAliasList();
testSendToTagList();
sys();
vis();
}
public static void testSendToAliasList() {
List aliasList = new ArrayList<>();
//别名
aliasList.add(“flutter_bitpark”);
//消息内容
String msg_content = “我是测试的demo”;
//扩展字段
String extrasparam = “aaa”;
//此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
String extraKey = “bbb”;
//标题
String notification_title = “测试访客消息通知”;
sendToAliasList(aliasList, msg_content, extraKey, extrasparam, notification_title);
}
public static void testSendToTagList() {
List tagList = new ArrayList<>();
//tag 这个tag是需要客户端那边注册上去极光那边
tagList.add(“1305840456550944769”);
PushVo vo = new PushVo();
vo.setDepartName(“产品部”);
vo.setLocation(“一号测温机”);
vo.setHasMask(“1”);
vo.setHealthStatus(“1”);
vo.setUserName(“蔡旭东”);
vo.setSnapTime(new Date());
vo.setTemperature(“37.43℃”);
JSONObject json = (JSONObject) JSONObject.toJSON(vo);
//消息内容
JSONObject msg_content = json;
//扩展字段
String extrasparam = “3”;
//此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
String extraKey = “bbb”;
//标题
String notification_title = “防疫小助手”;
sendToTagList(tagList, msg_content, extraKey, extrasparam, notification_title);
}
//访客通知
public static void vis(){
List tagList = new ArrayList<>();
//tag
tagList.add(“1305840456550944769”);
//标题
String notification_title = “访客通知”;
PushVo vo = new PushVo();
vo.setUserName(“王昭君”);
vo.setIsVisit(“1”);
vo.setSnapTime(new Date());
JSONObject json = (JSONObject) JSONObject.toJSON(vo);
//消息内容
JSONObject msg_content = json;
//此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
String extraKey = “bbb”;
//扩展字段
String extrasparam = “1”;
sendToTagList(tagList, msg_content, extraKey, extrasparam, notification_title);
}
//系统通知
public static void sys(){
List tagList = new ArrayList<>();
//tag
tagList.add(“1305840456550944769”);
//标题
String notification_title = “系统通知”;
PushVo vo = new PushVo();
vo.setIsVisit(“1”);
vo.setSnapTime(