5 Star 25 Fork 15

华为移动服务 / hms-push-serverdemo-java

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
SendInstanceAppMessage.java 2.54 KB
一键复制 编辑 原始数据 按行查看 历史
l00282963 提交于 2020-05-26 09:26 . first commit
/*
* Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.huawei.push.examples;
import com.alibaba.fastjson.JSONObject;
import com.huawei.push.exception.HuaweiMesssagingException;
import com.huawei.push.message.AndroidConfig;
import com.huawei.push.message.Message;
import com.huawei.push.messaging.HuaweiApp;
import com.huawei.push.messaging.HuaweiMessaging;
import com.huawei.push.reponse.SendResponse;
import com.huawei.push.util.InitAppUtils;
public class SendInstanceAppMessage {
/**
* send instance app message
*
* @throws HuaweiMesssagingException
*/
public void sendInstanceAppMessage() throws HuaweiMesssagingException {
HuaweiApp app = InitAppUtils.initializeApp();
HuaweiMessaging huaweiMessaging = HuaweiMessaging.getInstance(app);
String token = "AI838_-IxzMqKqeIoIqFgL9D5N8YunVqZXFU3jCohcmEkb1RMquoT7uxQkv3cXCv7IXwXjTsH0WK35DRrnLI6RBOWxqjnRqkbp6W5CFQj0zw09FG5sTuyZd2NHtxgVzUUg";
JSONObject params = new JSONObject();
params.put("key1", "test1");
params.put("key2", "test2");
JSONObject ringtone = new JSONObject();
ringtone.put("vibration", "true");
ringtone.put("breathLight", "true");
JSONObject msgBody = new JSONObject();
msgBody.put("title", "Welcome to use Huawei HMS Push Kit");
msgBody.put("description", "One of the best push platform on the planet!!!");
msgBody.put("page", "");
msgBody.put("params", params);
msgBody.put("ringtone", ringtone);
JSONObject msg = new JSONObject();
msg.put("pushtype", 0);
msg.put("pushbody", msgBody);
String data = msg.toJSONString();
AndroidConfig androidConfig = AndroidConfig.builder().setFastAppTargetType(1).build();
Message message = Message.builder().setData(data)
.setAndroidConfig(androidConfig)
.addToken(token)
.build();
SendResponse response = huaweiMessaging.sendMessage(message);
}
}
Java
1
https://gitee.com/hms-core/hms-push-serverdemo-java.git
git@gitee.com:hms-core/hms-push-serverdemo-java.git
hms-core
hms-push-serverdemo-java
hms-push-serverdemo-java
master

搜索帮助