zoukankan      html  css  js  c++  java
  • .Net Core3.1 MVC + EF Core+ AutoFac+LayUI+Sqlserver的框架搭建极光推送

       极光推送是一款不错的开源免费的产品,能满足一般需求,但是如果想要特殊需求,还是需要付费的。极光推送系统需要配合手机端实现消息的推送,所以能不能到达,也要看收集端的配置了,关于极光推送的如何配置,请阅读:(https://www.cnblogs.com/zpy1993-09/p/14750604.html)。

     下面就是直接上代码了:

    也就要一个消息推送的通用类:

    using Jiguang.JPush;
    using Jiguang.JPush.Model;
    using System;
    using System.Collections.Generic;
    using System.Text;
    
    namespace Core.Net.Common.Core.Net.Core.JiGuang
    {
      
    
            public class registration_i
            {
                public List<string> registration_id = new List<string>();
            }
            public class JiGuangHelper
            {
    
                // 极光推送
                private static JPushClient client = new JPushClient("4f82eabcec25693495e4b346", "8dff2c43b3770418c9029092");
            /// <summary>
            /// 极光推送传递一个参数
            /// </summary>
            /// <param name="sTitle">标题</param>
            /// <param name="sContent">内容</param>
            /// <param name="name">参数字段</param>
            /// <param name="value">参数值</param>
            /// <param name="sAudience">all 代表广推  如果不是all,那么就是根据激光Id给特定人推送</param>
            /// <returns></returns>
                                                                                                                        
                public static string PushMsg(string sTitle, string sContent, string name, string value, string sAudience)
                {
                    object toUser = sAudience;
                    if (sAudience != "all")
                    {
                        registration_i registration = new registration_i();
                        List<string> users = new List<string>();
                        users.Add(sAudience);
                        registration.registration_id = users;
                        toUser = registration;
                    }
                    PushPayload pushPayload = new PushPayload()
                    {
                        Platform = new List<string> { "android" },
                        Audience = toUser,
                        Notification = new Notification
                        {
                            Alert = sContent,
                            Android = new Android
                            {
                                Alert = sContent,
                                Title = sTitle,
                                Extras = new Dictionary<string, object>
                                {
                                    [name] = value
                                }
                            }
                        },
                        Message = new Message
                        {
                            Title = sTitle,
                            Content = sContent,
                            Extras = new Dictionary<string, string>
                            {
                                [name] = value
                            }
                        },
                    };
                    var response = client.SendPush(pushPayload);
                    return response.Content;
                }
            /// <summary>
            /// 极光推送传递一个参数
            /// </summary>
            /// <param name="sTitle">标题</param>
            /// <param name="sContent">内容</param>
            /// <param name="name">参数字段</param>
            /// <param name="value">参数值</param>
            /// <param name="users"></param>
            /// <returns></returns>
            public static string PushWarnMsg(string sTitle, string sContent,  string name, string value, List<string> users)
                {
                    registration_i registration = new registration_i();
                    registration.registration_id = users;
                    PushPayload pushPayload = new PushPayload()
                    {
                        Platform = new List<string> { "android" },
                        Audience = registration,
                        Notification = new Notification
                        {
                            Alert = sContent,
                            Android = new Android
                            {
                                Alert = sContent,
                                Title = sTitle,
                                Extras = new Dictionary<string, object>
                                {
                                    [name] = value
                                }
                            }
                        },
                        Message = new Message
                        {
                            Title = sTitle,
                            Content = sContent,
                            Extras = new Dictionary<string, object>
                            {
                                [name] = value
                            }
                        }
                    };
                    var response = client.SendPush(pushPayload);
                    //FileHelper.AddSaveFile("UpFile/Content/Send.txt", DateTime.Now.ToString() + "调用极光推送: " + response.Content, "utf-8");
                    return response.Content;
                }
                public static string NewPushWarnMsg(string sTitle, string sContent, List<string> users)
                {
                    registration_i registration = new registration_i();
                    registration.registration_id = users;
                    PushPayload pushPayload = new PushPayload()
                    {
                        Platform = new List<string> { "android" },
                        Audience = registration,
                        Notification = new Notification
                        {
                            Alert = sContent,
                            Android = new Android
                            {
                                Alert = sContent,
                                Title = sTitle,
    
                            }
                        },
                        Message = new Message
                        {
                            Title = sTitle,
                            Content = sContent,
    
                        }
                    };
                    var response = client.SendPush(pushPayload);
                    return response.Content;
                }
            }
    
       
    }
    .Net Core
  • 相关阅读:
    实战DeviceIoControl 之五:列举已安装的存储设备
    zend server 安装及相关配置
    php中echo 与print 的区别
    PHP:Deprecated: Function set_magic_quotes_runtime() is deprecated 错误
    php与ascii码
    计算EXCEL列名代号的程序
    笔记本电脑键盘不能正常输入字符
    读写注册表
    创建用于监视对student表进行插入和更新操作的触发器
    在客户机上安装Windows服务
  • 原文地址:https://www.cnblogs.com/zpy1993-09/p/15573204.html
Copyright © 2011-2022 走看看