美文网首页
Pns消息推送

Pns消息推送

作者: yaoshiyou | 来源:发表于2016-07-08 13:21 被阅读156次

概述

实现短信\xx微信\手机端消息推送

短信发送

get url:http://dev.nbeport.com/pns/sms?applicationid=1&mobile=15825561xxx&content=content1{0}&min=5&channel=nbeport

请求参数

名称 描述
applicationid 应用ID
userId CAS中对应的userid
mobile 手机号码
content 内容{0},{0},为6位随机码
channel 短信通道 nbeport:电子口岸(默认),nbciq:国检,nbmsa:海事

微信发送

get url:http://dev.nbeport.com/pns/weixin?applicationid=1&weixinId=2&username=nbshipper1,nbshipper2&templateId=1& content =urlencode({json})

请求参数

名称 描述
applicationid 应用ID
weixinId 对应微信平台编号
userId CAS中对应的userid
templateId 模版id
content 模版内容json 格式,

手机推送

get url:http://dev.nbeport.com/pns/app?applicationid=1&username=nbshipper1,nbshipper2&templateId=1& content =urlencode({json})

请求参数

名称 描述
applicationid �应用ID�
appId 对应应用平台编号
userId CAS中对应的userid
platform android,ios,all
content 模版内容json 格式,示例:{Badge:1,Alert :"消息标题",Sound:"声音",CustomizedValues :{"CK1":"CV1","CK2":"CV2"}}

消息订阅

get url:http://dev.nbeport.com/pns/link?applicationid=1&appid=1&busnessKey=1& platform=android

请求参数

名称 描述
applicationid �应用ID�
appId 对应应用平台编号,微信\手机端必填
userId CAS中对应的userid
platform android,ios,weixin

推送订阅消息

get url:http://dev.nbeport.com/pns/msg?applicationid=1&appid=1&busnessKey=报关单号

请求参数

名称 描述
applicationid �应用ID�
appId 对应应用平台编号,微信\手机端必填
userId CAS中对应的userid
templateId 模版id
content 模版内容json 格式,

SDK调用

install-package Purple.Pns.Top [TestMethod] public void Top发送短信() { string mobile = "158255616XX"; string content = "测试短信发送,验证码{0}"; var rs = PnsClient.SendSms(mobile,content,5); Assert.IsNotNull(rs); } <add key="address:pns" value="http://localhost/pns"/>

消息列表

get url:http://localhost/pns/msg?pagesize=10&pageindex=1&applicationId=1

短信消息列表

get url:http://localhost/pns/sms?pagesize=10&pageindex=1&applicationId=1

短信消息详情

get url:http://localhost/pns/sms/1111-1111-1111-1111

微信消息列表

get url:http://localhost/pns/weixin?pagesize=10&pageindex=1&applicationId=1

微信消息详情

get url:http://localhost/pns/weixin/1111-1111-1111-1111

app消息列表

get url:http://localhost/pns/app?pagesize=10&pageindex=1&applicationId=1

微信消息详情

get url:http://localhost/pns/app/1111-1111-1111-1111

相关文章

  • Pns消息推送

    概述 实现短信\xx微信\手机端消息推送 短信发送 get url:http://dev.nbeport.com/...

  • Psychology Glossary 119

    Peripheral Nervous System (PNS): The part of the nervous ...

  • 消息推送

    推送通知的呈现效果总结 推送通知有5种不同的呈现效果1、在屏幕顶部显示一块横幅(显示具体内容)2、在屏幕中间弹出一...

  • 消息推送

    1、.简述一下消息推送的流程 2、如果不依赖APNS,如何在App进入后台时保证能够接收到远程消息?

  • 消息推送

    推送概念? APNs:Apple Push Notification Service,远程通知只能APNs服务器发...

  • 消息推送

    本地推送 @implementation AppDelegate 远程推送http://blog.csdn.net...

  • 消息推送

  • 消息推送

    http://blog.csdn.net/showhilllee/article/details/8631734

  • 消息推送

    https://www.jianshu.com/p/c58f8322a278

  • 消息推送

    1 什么是消息推送 很多手机APP会不定时的给用户推送消息,例如一些新闻APP会给用户推送用户可能感兴趣的新闻,或...

网友评论

      本文标题:Pns消息推送

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