本文主要是介绍信鸽推送集成华为渠道通知干货适用于小米魅族oppovivo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
信鸽渠道通过华为渠道发送通知,关于各种各样配置自己搞定就可以了;通知可以点击跳转到指定页面带参数都是可以的,所以信鸽给华为渠道接口可以没有传custom_content,赋值的时候赋空值了,可以通过 intent 传值*
ClickAction ca = new ClickAction();ca.setActionType(3);ca.setIntent("intent://com.xxxx/"+ path+"?"+ para.toString() ");
参数直接传到手机端接收
if(getIntent().getData() != null){this.pk= this.getIntent().getData().getQueryParameter("pk");this.className= this.getIntent().getData().getQueryParameter("class");}
这个接口端对于intent的参数怎么生成给了说明
Intent intent01 = new Intent(Intent.ACTION_VIEW, Uri.parse("xgscheme://com.xxxxx/PushMesClass?id=849&title="));intent01.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);String intentUri = intent01.toUri(Intent.URI_INTENT_SCHEME);
生成的 intentUri 直接在api 里面直接set 就可以了
"xgscheme://com.xxxxx/PushMesClass?id=849&title=
这个东西手机端activity 里面要配置下
<activityandroid:name=".activity.xxxxx"android:configChanges="keyboardHidden|orientation|screenSize"android:screenOrientation="portrait" ><intent-filter><action android:name="android.intent.action.VIEW" /><category android:name="android.intent.category.DEFAULT" /><dataandroid:host="com.xxxxx"android:path="/ApplicationReady"android:scheme="xgscheme" /></intent-filter></activity>
但是对于java 调取发送通知这一块给说明把封装的Message 通过 PushAppRequest 推到信鸽的服务器就可以了
public static void pushToAndroid(Message message, String account) {XingeApp xinge = new XingeApp(accessIdAndroid, secretKeyAndroid);ArrayList<String> account_list = new ArrayList<String>();for(String s : account.split(",")){account_list.add(s);}//推送请求信息PushAppRequest pushAppRequest=new PushAppRequest();
// message.setAccept_time(pair);//消息体pushAppRequest.setMessage(message);//消息类型pushAppRequest.setMessage_type(MessageType.notify);//推送目标pushAppRequest.setAudience_type(AudienceType.account_list);//推送平台pushAppRequest.setPlatform(Platform.android);pushAppRequest.setEnvironment(Environment.product);//推送账号pushAppRequest.setAccount_list(account_list);pushAppRequest.setPush_id("0");String pushStr = pushAppRequest.toString();JSONObject pushJo = new JSONObject(pushStr);if(message.getAndroid() != null && message.getAndroid().getAction() != null){pushJo.getJSONObject("message").getJSONObject("android").put("action", message.getAndroid().getAction().toJsonObject());}System.out.println(pushJo.toString());JSONObject jo = xinge.pushApp(pushJo.toString());KLog.print("android->" + jo.toString());}
这个地方为什么
if(message.getAndroid() != null && message.getAndroid().getAction() != null){pushJo.getJSONObject("message").getJSONObject("android").put("action", message.getAndroid().getAction().toJsonObject());}
写这个呢,那是因为 这个实体java api ClickAction给了set 赋值,没给get
哈哈,这个是服务器java 的bug吧
修改时间:2020年6月18日14:33:27
最新的java 信鸽sdk 已经做过优化
对于手机端activity 跳转及数据处理
手机端获取 代码方法 onNotificationClickedResult 不用对数据做处理
会根据服务器转过来的 intent 手机会自动做相应的跳转
直接看这里吧
这个字段 “custom_content” 信鸽下通知过段时间废弃掉
我们公司的对于一些通知,我们的app必须登录之后再做相应的逻辑处理;
所有通知大部分进登录activity,登录接收数据并保存传递数据,自动登录之后,做对应的数据转发及跳转逻辑
读这个的时候,要熟读信鸽的android 端,java 接口端文档,还有华为的文档呀,耐心读,就会有收获。
这篇关于信鸽推送集成华为渠道通知干货适用于小米魅族oppovivo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!