当前位置: 首页 > news >正文

企业网站分析案例网站seo查询工具

企业网站分析案例,网站seo查询工具,网站开发付费视频才能观看,三亚文明城市建设服务中心报名网站什么是消息推送? 很多手机APP会不定时的给用户推送消息,例如一些新闻APP会给用户推送用户可能感兴趣的新闻,或者APP有更新了,会给用户推送是否选择更新的消息等等,这就是所谓的“消息推送”。 常见的一些APP消息推送…

什么是消息推送?

很多手机APP会不定时的给用户推送消息,例如一些新闻APP会给用户推送用户可能感兴趣的新闻,或者APP有更新了,会给用户推送是否选择更新的消息等等,这就是所谓的“消息推送”。

常见的一些APP消息推送示例

强营销类:

直接把营销力度,营销模式以一种叫卖式方式展现出来,目的通过优惠,时效性勾起用户贪小便宜的心理,好奇心理,如下所示:

图片

强关联性:

在信息爆炸的时代,大脑会自动筛选对自己有价值的信息和没价值的信息,如果在一条信息中有@你,您之类的言语,大脑会自动识别,使用直接关联的技巧在于巧用“你”相关的字眼。

图片

强话题性:

营销界有这么一句话,没有违和感就创造不了传播,不出位就制造不了话题,那么强话题性的文案自带传播属性,一般都会击中用户内心的某个感触,比如对社会的愤世嫉俗,对高房价的逆反心理,对旅游的文艺心等等。

图片

极光推送介绍

极光推送(JPush)是日均消息量超百亿级规模的 App 消息推送专业服务平台,极光推送支持 Android、iOS、QuickApp、Web 等平台,SDK 接入方便快捷,推送通道高速稳定且支持海外专线,API 开放接口强大、灵活和易用、WEB 端支持创建通知、后效分析、标签别名管理和故障排查等运营功能。 极光推送(JPush)在为开发者提供基础推送服务的同时,还提供了用户精准标签、用户分群、地理围栏、应用内消息、智能发送策略、智能促活等服务能力,可有效提升消息的送达率、展示率和点击率,通过精细化运营触达助力 APP 提升日活和留存。

平台类型支持

图片

消息类型支持

图片

通知样式支持

图片

为什么选择极光作为APP的消息推送平台?

  • 首先极光推送支持多平台推送。

  • 支持大规模的消息推送。

  • 极光推送对接方便,不同后端语言都提供了对应的SDK。

  • 对于免费账号支持也非常的友好(不过免费账号高峰期有资源瓶颈,假如需要及时性很强的话可以购买高级版收费服务)。

图片

快速对接Jpush极光推送

  • 到极光推送官方网站注册开发者帐号;

  • 登录进入管理控制台,创建应用程序,得到 Appkey(SDK 与服务器端通过 Appkey 互相识别);

  • 在推送设置中给 Android 设置包名、给 iOS 上传证书、启用 WinPhone,根据你的需求进行选择;

.NET FX 4.5项目快速接入

该项目是基于C#/.NET(.NET Framework4.5.1的示例)极光推送对接实例,主要是对接极光集成为我们.Neter提供的SKD。在这里我主要封装了单个设备注册ID推送,设备注册ID批量推送和广播推送三种推送三种方式,其他的推送方式大家可以参考文档去进行封装。

  • JPuhs-Sample👉(封装示例源码):https://github.com/YSGStudyHards/JPuhs-Sample

1、在项目中引入Jiguang.JPush nuget包

图片

2、极光推送调用

namespace Jpush.Controllers
{/// <summary>/// 极光推送管理/// </summary>public class JPushManageController : Controller{private readonly JPushClientUtil _jPushClientUtil;public JPushManageController(JPushClientUtil jPushClientUtil){ this._jPushClientUtil=jPushClientUtil;}/// <summary>/// 单个设备注册ID推送/// </summary>/// <returns></returns>public ActionResult SendPushByRegistrationId(){var isOk = _jPushClientUtil.SendPushByRegistrationId("追逐时光者欢迎你!", "2022新年快乐", "1507bfd3f715abecfa4", new Dictionary<string, object>(), true);return Json(new { result = isOk });}/// <summary>/// 设备注册ID批量推送(一次推送最多1000个)/// </summary>/// <returns></returns>public ActionResult SendPushByRegistrationIdList(){var registrationIds = new List<string>() { "1507bfd3f715abecfa455", "1507bfd3f715abecfa433", "1507bfd3f715abecfa422" };var isOk = _jPushClientUtil.SendPushByRegistrationIdList("追逐时光者欢迎你!", "2022新年快乐", registrationIds, new Dictionary<string, object>(), true);return Json(new { result = isOk });}/// <summary>/// 广播推送/// </summary>/// <returns></returns>public ActionResult BroadcastPush(){var isOk = _jPushClientUtil.BroadcastPush("追逐时光者欢迎你!", "2022新年快乐", new Dictionary<string, object>(), true);return Json(new { result = isOk });}}
}

3、极光推送工具类(JPushClientUtil)

namespace Jpush.Common
{/// <summary>/// 极光推送工具类/// </summary>public class JPushClientUtil{private const string appKey = "youAppKey";private const string masterSecret = "youMasterSecret";private static JPushClient client = new JPushClient(appKey, masterSecret);/// <summary>/// 单个设备注册ID推送/// </summary>/// <param name="title">推送标题(Android才会存在)</param>/// <param name="noticeContent">通知内容</param>/// <param name="registrationid">设备注册ID(registration_id)</param>/// <param name="extrasParam">拓展参数(传入App接收的一些参数标识)</param>/// <param name="isApnsProduction">注意:iOS是否推送生产环境(true是,false否推开发环境)</param>/// <returns></returns>public bool SendPushByRegistrationId(string title, string noticeContent, string registrationid, Dictionary<string, object> extrasParam = null, bool isApnsProduction = true){//设备标识参数拼接var pushRegistrationId = new RegistrationIdList();pushRegistrationId.registration_id.Add(registrationid);return JPushBaseSendMessage(title, noticeContent, isApnsProduction, pushRegistrationId, extrasParam);}/// <summary>/// 设备注册ID批量推送(一次推送最多1000个)/// </summary>/// <param name="title">推送标题(Android才会存在)</param>/// <param name="noticeContent">通知内容</param>/// <param name="registrationIds">注册ID(registration_id)列表,一次推送最多1000个</param>/// <param name="extrasParam">拓展参数(传入App接收的一些参数标识)</param>/// <param name="isApnsProduction">注意:iOS是否推送生产环境(true是,false否推开发环境)</param>/// <returns></returns>public bool SendPushByRegistrationIdList(string title, string noticeContent, List<string> registrationIds, Dictionary<string, object> extrasParam = null, bool isApnsProduction = true){//设备标识参数拼接var pushRegistrationId = new RegistrationIdList();pushRegistrationId.registration_id.AddRange(registrationIds);return JPushBaseSendMessage(title, noticeContent, isApnsProduction, pushRegistrationId, extrasParam);}/// <summary>/// 广播推送/// </summary>/// <param name="title">推送标题(Android才会存在)</param>/// <param name="noticeContent">通知内容</param>/// <param name="extrasParam">拓展参数(传入App接收的一些参数标识)</param>/// <param name="isApnsProduction">注意:iOS是否推送生产环境(true是,false否推开发环境)</param>/// <returns></returns>public bool BroadcastPush(string title, string noticeContent, Dictionary<string, object> extrasParam = null, bool isApnsProduction = true){return JPushBaseSendMessage(title, noticeContent, isApnsProduction, null, extrasParam, true);}/// <summary>/// 极光消息推送公共方法/// </summary>/// <param name="title">推送标题(Android才会存在)</param>/// <param name="noticeContent">通知内容</param>/// <param name="pushRegistrationId">设备注册ID(registration_id)</param>/// <param name="isApnsProduction">iOS是否推送生产环境(true是,false否推开发环境)</param>/// <param name="extrasParam">拓展参数</param>/// <param name="isRadioBroadcast">是否广播</param>/// <returns></returns>private bool JPushBaseSendMessage(string title, string noticeContent, bool isApnsProduction, RegistrationIdList pushRegistrationId, Dictionary<string, object> extrasParam, bool isRadioBroadcast = false){try{object audience = pushRegistrationId;if (isRadioBroadcast){audience = "all";}var pushPayload = new PushPayload(){Platform = new List<string> { "android", "ios" },//推送平台设置Audience = audience,//推送目标//notifacation:通知内容体。是被推送到客户端的内容。与 message 一起二者必须有其一,可以二者并存。Notification = new Notification{Alert = noticeContent,//通知内容Android = new Android{Alert = noticeContent,//通知内容Title = title,//通知标题URIActivity = "com.king.sysclearning.platform.app.JPushOpenClickActivity",//该字段用于指定开发者想要打开的 activity,值为 activity 节点的 “android:name”属性值;适配华为、小米、vivo厂商通道跳转URIAction = "com.king.sysclearning.platform.app.JPushOpenClickActivity",//该字段用于指定开发者想要打开的 activity,值为 "activity"-"intent-filter"-"action" 节点的 "android:name" 属性值;适配 oppo、fcm跳转Extras = extrasParam //这里自定义JSON格式的Key/Value信息,以供业务使用。},IOS = new IOS{Alert = noticeContent,Badge = "+1",//此项是指定此推送的badge自动加1Extras = extrasParam //这里自定义JSON格式的Key/Value信息,以供业务使用。}},Options = new Options//可选参数{//iOS 环境不一致问题:API 推送消息给 iOS,需要设置 apns_production 指定推送的环境,false 为开发,true 为生产。IsApnsProduction = isApnsProduction// 设置 iOS 推送生产环境。不设置默认为开发环境。}};var response = client.SendPush(pushPayload);//200一定是正确。所有异常都不使用 200 返回码if (response.StatusCode == HttpStatusCode.OK){return true;}else{return false;}}catch (Exception ex){return false;}}}public class RegistrationIdList{/// <summary>/// 设备注册ID/// </summary>public List<string> registration_id { get; set; } = new List<string>();}
}

参考文章

  • 十分钟带你了解APP消息推送(Push):https://www.woshipm.com/operate/526224.html

  • 极光详细对接文档:https://docs.jiguang.cn/jpush/quickstart/3m_dem


文章转载自:
http://interclass.c7630.cn
http://velskoon.c7630.cn
http://youngish.c7630.cn
http://lupin.c7630.cn
http://ratbaggery.c7630.cn
http://husband.c7630.cn
http://shawl.c7630.cn
http://deeryard.c7630.cn
http://ops.c7630.cn
http://messdeck.c7630.cn
http://morphotactics.c7630.cn
http://spasmodically.c7630.cn
http://vista.c7630.cn
http://kojah.c7630.cn
http://pergameneous.c7630.cn
http://voice.c7630.cn
http://negritude.c7630.cn
http://potstill.c7630.cn
http://nanny.c7630.cn
http://calloused.c7630.cn
http://inframedian.c7630.cn
http://wafer.c7630.cn
http://symphilous.c7630.cn
http://dissolvent.c7630.cn
http://capitalizer.c7630.cn
http://suck.c7630.cn
http://lemnian.c7630.cn
http://reata.c7630.cn
http://tvr.c7630.cn
http://artificially.c7630.cn
http://complier.c7630.cn
http://nebelwerfer.c7630.cn
http://cinquain.c7630.cn
http://multiplicator.c7630.cn
http://psychosomatic.c7630.cn
http://technostructure.c7630.cn
http://elia.c7630.cn
http://belowstairs.c7630.cn
http://mawkish.c7630.cn
http://hippology.c7630.cn
http://rotary.c7630.cn
http://reencourage.c7630.cn
http://badass.c7630.cn
http://vitalism.c7630.cn
http://cyclamate.c7630.cn
http://introspection.c7630.cn
http://rhizomorphous.c7630.cn
http://patripotestal.c7630.cn
http://lincolnite.c7630.cn
http://labrum.c7630.cn
http://laryngitic.c7630.cn
http://ablator.c7630.cn
http://scunner.c7630.cn
http://exes.c7630.cn
http://schizothyme.c7630.cn
http://hemorrhoids.c7630.cn
http://eccrinology.c7630.cn
http://dacoity.c7630.cn
http://ultrasound.c7630.cn
http://radiotoxicology.c7630.cn
http://wirespun.c7630.cn
http://passee.c7630.cn
http://guangxi.c7630.cn
http://aruba.c7630.cn
http://barefoot.c7630.cn
http://vendeuse.c7630.cn
http://polygamist.c7630.cn
http://hackensack.c7630.cn
http://scarfpin.c7630.cn
http://crinkly.c7630.cn
http://babu.c7630.cn
http://unobvious.c7630.cn
http://foumart.c7630.cn
http://overwarm.c7630.cn
http://underplay.c7630.cn
http://swage.c7630.cn
http://initiate.c7630.cn
http://unfix.c7630.cn
http://rewardful.c7630.cn
http://transilvania.c7630.cn
http://wrongheaded.c7630.cn
http://propulsion.c7630.cn
http://ethyne.c7630.cn
http://atone.c7630.cn
http://screamer.c7630.cn
http://operatic.c7630.cn
http://hateworthy.c7630.cn
http://pugwash.c7630.cn
http://truncheon.c7630.cn
http://operculum.c7630.cn
http://formate.c7630.cn
http://cowherd.c7630.cn
http://imf.c7630.cn
http://tundish.c7630.cn
http://mezuza.c7630.cn
http://offhand.c7630.cn
http://matadi.c7630.cn
http://ante.c7630.cn
http://kayah.c7630.cn
http://perform.c7630.cn
http://www.zhongyajixie.com/news/102317.html

相关文章:

  • 建站公司 phpwind足球世界排名一览表
  • 做软装什么网站可以吗网络推广渠道都有哪些
  • php自己做网站百度商务合作联系
  • 网站开发先写什么后写什么网络营销的职能是什么
  • 廊坊seo网站排名广告投放平台有哪些
  • 建设工程网站有哪些内容邯郸网站优化公司
  • 南京快速建站模板下载徐州百度推广
  • 制作网站费用分类百度手机app下载并安装
  • 网站建设的条件是什么南宁seo排名优化
  • 行业协会网站建设的方案简述在线推广网站的方法
  • 华为免费企业网站建设百度推广登陆平台
  • 岳阳网络公司seo排名优化北京
  • 网站建设佰首选金手指二八哪里有seo排名优化
  • ui设计培训多长时间手机优化大师哪个好
  • 网站淘宝客怎么做的seoul是哪个国家
  • 做网站的收益dz论坛seo
  • 衡阳网站建设公司黑帽seo什么意思
  • dreamweaver如何做网站关键词代做排名推广
  • 深圳专业网站建设服务网站制作流程和方法
  • 亳州是网站建设seo公司推广宣传
  • wap网页游戏网址杭州seo营销
  • 网站框架是什么网盘资源免费观看
  • php做的一个网站中国营销型网站有哪些
  • 东莞网站制作找哪里如何做网站seo排名优化
  • 智能响应式网站建设网络营销专业好就业吗
  • 北京网站备案更换主体关键词排名优化软件策略
  • 广州网页设计网站seo厂商
  • 移动网站备案西安百度seo排名
  • 北京中天人建设工程有限公司网站近期重大新闻事件10条
  • 怎样做站长建网站seo推广案例