微信支付之支付碼支付

来源:https://www.cnblogs.com/cby-love/archive/2023/01/02/17020194.html
-Advertisement-
Play Games

一、獲取微信支付碼url (1)獲取微信支付碼url主方法 /// <summary> /// 獲取微信支付二維碼 /// </summary> /// <param name="log">日誌</param> /// <param name="orderId">訂單編號</param> /// < ...


一、獲取微信支付碼url
(1)獲取微信支付碼url主方法
        /// <summary>
        /// 獲取微信支付二維碼
        /// </summary>
        /// <param name="log">日誌</param>
        /// <param name="orderId">訂單編號</param>
        /// <returns></returns>
        public static string GetPayUrl(string orderId, decimal totalPrice)
        {
            //errMsg = "";
            //Log4Net.Log4Net.Info(log, "訂單號:" + orderId + "發起Native的第二種支付方式");
            WxPayData data = new WxPayData();
            data.SetValue("body", "");//商品描述
            data.SetValue("attach", "");//附加數據
            data.SetValue("out_trade_no", orderId);//隨機字元串
            data.SetValue("total_fee", Convert.ToInt32(totalPrice * 100));//總金額
            data.SetValue("time_start", DateTime.Now.ToString("yyyyMMddHHmmss"));//交易起始時間
            data.SetValue("time_expire", DateTime.Now.AddMinutes(30).ToString("yyyyMMddHHmmss"));//交易結束時間,前端二維碼有效期半小時
            data.SetValue("goods_tag", "");//商品標記(可根據業務隨便填)
            data.SetValue("trade_type", "NATIVE");//交易類型
            data.SetValue("product_id", orderId);//商品ID
            WxPayData result = WxPayApi.UnifiedOrder(data);//調用統一下單介面
            string url = string.Empty;
            if (result.GetValue("return_code").ToString() == "SUCCESS")
            {
                if (result.GetValue("result_code").ToString() == "SUCCESS")
                {
                    url = result.GetValue("code_url").ToString();//獲得統一下單介面返回的二維碼鏈接
                }
                else
                {
                    //errMsg = result.GetValue("err_code_des").ToString();
                }
            }
            else
            {
                //errMsg = result.GetValue("return_msg").ToString();
            }

            //Log4Net.Log4Net.Info(log, "訂單號:" + orderId + "發起Native的第二種支付方式,生成支付鏈接:" + url);
            return url;

        }
(2)支付輔助類
/**
        * 
        * 統一下單
        * @param WxPaydata inputObj 提交給統一下單API的參數
        * @param int timeOut 超時時間
        * @throws WxPayException
        * @return 成功時返回,其他拋異常
        */
        public static WxPayData UnifiedOrder(WxPayData inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
            //檢測必填參數
            if (!inputObj.IsSet("out_trade_no"))
            {
                throw new Exception("缺少統一支付介面必填參數out_trade_no!");
            }
            else if (!inputObj.IsSet("body"))
            {
                throw new Exception("缺少統一支付介面必填參數body!");
            }
            else if (!inputObj.IsSet("total_fee"))
            {
                throw new Exception("缺少統一支付介面必填參數total_fee!");
            }
            else if (!inputObj.IsSet("trade_type"))
            {
                throw new Exception("缺少統一支付介面必填參數trade_type!");
            }

            //關聯參數
            if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
            {
                throw new Exception("統一支付介面中,缺少必填參數openid!trade_type為JSAPI時,openid為必填參數!");
            }
            if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
            {
                throw new Exception("統一支付介面中,缺少必填參數product_id!trade_type為JSAPI時,product_id為必填參數!");
            }

            //非同步通知url未設置,則使用配置文件中的url
            if (!inputObj.IsSet("notify_url"))
            {
                inputObj.SetValue("notify_url", WxPayConfig.GetConfig().GetNotifyUrl());//非同步通知url
            }

            inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//appID
            inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商戶號
            inputObj.SetValue("spbill_create_ip", WxPayConfig.GetConfig().GetIp());//終端ip              
            inputObj.SetValue("nonce_str", GenerateNonceStr());//隨機字元串
            inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//簽名類型

            //簽名
            inputObj.SetValue("sign", inputObj.MakeSign());
            string xml = inputObj.ToXml();

            var start = DateTime.Now;
            //Log4Net.Log4Net.Info(log, "WX UnfiedOrder request : " + xml);
            string response = HttpService.Post(xml, url, false, timeOut);
            //Log4Net.Log4Net.Info(log, "WX UnfiedOrder response : " + response);
            var end = DateTime.Now;
            int timeCost = (int)((end - start).TotalMilliseconds);

            WxPayData result = new WxPayData();
            result.FromXml(response);

            ReportCostTime(url, timeCost, result);//測速上報

            return result;
        }
 
public class WxPayData
    {
        public const string SIGN_TYPE_MD5 = "MD5";
        public const string SIGN_TYPE_HMAC_SHA256 = "HMAC-SHA256";
        public WxPayData()
        {

        }

        //採用排序的Dictionary的好處是方便對數據包進行簽名,不用再簽名之前再做一次排序
        private SortedDictionary<string, object> m_values = new SortedDictionary<string, object>();

        /**
        * 設置某個欄位的值
        * @param key 欄位名
         * @param value 欄位值
        */
        public void SetValue(string key, object value)
        {
            m_values[key] = value;
        }

        /**
        * 根據欄位名獲取某個欄位的值
        * @param key 欄位名
         * @return key對應的欄位值
        */
        public object GetValue(string key)
        {
            object o = null;
            m_values.TryGetValue(key, out o);
            return o;
        }

        /**
         * 判斷某個欄位是否已設置
         * @param key 欄位名
         * @return 若欄位key已被設置,則返回true,否則返回false
         */
        public bool IsSet(string key)
        {
            object o = null;
            m_values.TryGetValue(key, out o);
            if (null != o)
                return true;
            else
                return false;
        }

        /**
        * @將Dictionary轉成xml
        * @return 經轉換得到的xml串
        * @throws WxPayException
        **/
        public string ToXml()
        {
            //數據為空時不能轉化為xml格式
            if (0 == m_values.Count)
            {
                throw new Exception("WxPayData數據為空!");
            }

            string xml = "<xml>";
            foreach (KeyValuePair<string, object> pair in m_values)
            {
                //欄位值不能為null,會影響後續流程
                if (pair.Value == null)
                {
                    throw new Exception("WxPayData內部含有值為null的欄位!");
                }

                if (pair.Value.GetType() == typeof(int))
                {
                    xml += "<" + pair.Key + ">" + pair.Value + "</" + pair.Key + ">";
                }
                else if (pair.Value.GetType() == typeof(string))
                {
                    xml += "<" + pair.Key + ">" + "<![CDATA[" + pair.Value + "]]></" + pair.Key + ">";
                }
                else//除了string和int類型不能含有其他數據類型
                {
                    throw new Exception("WxPayData欄位數據類型錯誤!");
                }
            }
            xml += "</xml>";
            return xml;
        }

        /**
        * @將xml轉為WxPayData對象並返回對象內部的數據
        * @param string 待轉換的xml串
        * @return 經轉換得到的Dictionary
        * @throws WxPayException
        */
        public SortedDictionary<string, object> FromXml(string xml)
        {
            if (string.IsNullOrEmpty(xml))
            {
                throw new Exception("將空的xml串轉換為WxPayData不合法!");
            }


            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.LoadXml(xml);
            XmlNode xmlNode = xmlDoc.FirstChild;//獲取到根節點<xml>
            XmlNodeList nodes = xmlNode.ChildNodes;
            foreach (XmlNode xn in nodes)
            {
                XmlElement xe = (XmlElement)xn;
                m_values[xe.Name] = xe.InnerText;//獲取xml的鍵值對到WxPayData內部的數據中
            }

            try
            {
                //2015-06-29 錯誤是沒有簽名
                if (m_values["return_code"] != "SUCCESS")
                {
                    return m_values;
                }
                CheckSign();//驗證簽名,不通過會拋異常
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }

            return m_values;
        }

        /**
        * @Dictionary格式轉化成url參數格式
        * @ return url格式串, 該串不包含sign欄位值
        */
        public string ToUrl()
        {
            string buff = "";
            foreach (KeyValuePair<string, object> pair in m_values)
            {
                if (pair.Value == null)
                {
                    throw new Exception("WxPayData內部含有值為null的欄位!");
                }

                if (pair.Key != "sign" && pair.Value.ToString() != "")
                {
                    buff += pair.Key + "=" + pair.Value + "&";
                }
            }
            buff = buff.Trim('&');
            return buff;
        }


        /**
        * @Dictionary格式化成Json
         * @return json串數據
        */
        public string ToJson()
        {
            //string jsonStr = JsonMapper.ToJson(m_values);
            //return jsonStr;
            return "";
        }

        /**
        * @values格式化成能在Web頁面上顯示的結果(因為web頁面上不能直接輸出xml格式的字元串)
        */
        public string ToPrintStr()
        {
            string str = "";
            foreach (KeyValuePair<string, object> pair in m_values)
            {
                if (pair.Value == null)
                {
                    throw new Exception("WxPayData內部含有值為null的欄位!");
                }


                str += string.Format("{0}={1}\n", pair.Key, pair.Value.ToString());
            }
            str = HttpUtility.HtmlEncode(str);
            return str;
        }


        /**
        * @生成簽名,詳見簽名生成演算法
        * @return 簽名, sign欄位不參加簽名
        */
        public string MakeSign(string signType)
        {
            //轉url格式
            string str = ToUrl();
            //在string後加入API KEY
            str += "&key=" + WxPayConfig.GetConfig().GetKey();
            if (signType == SIGN_TYPE_MD5)
            {
                var md5 = MD5.Create();
                var bs = md5.ComputeHash(Encoding.UTF8.GetBytes(str));
                var sb = new StringBuilder();
                foreach (byte b in bs)
                {
                    sb.Append(b.ToString("x2"));
                }
                //所有字元轉為大寫
                return sb.ToString().ToUpper();
            }
            else if (signType == SIGN_TYPE_HMAC_SHA256)
            {
                return CalcHMACSHA256Hash(str, WxPayConfig.GetConfig().GetKey());
            }
            else
            {
                throw new Exception("sign_type 不合法");
            }
        }

        /**
        * @生成簽名,詳見簽名生成演算法
        * @return 簽名, sign欄位不參加簽名 SHA256
        */
        public string MakeSign()
        {
            return MakeSign(SIGN_TYPE_HMAC_SHA256);
        }



        /**
        * 
        * 檢測簽名是否正確
        * 正確返回true,錯誤拋異常
        */
        public bool CheckSign(string signType)
        {
            //如果沒有設置簽名,則跳過檢測
            if (!IsSet("sign"))
            {
                throw new Exception("WxPayData簽名存在但不合法!");
            }
            //如果設置了簽名但是簽名為空,則拋異常
            else if (GetValue("sign") == null || GetValue("sign").ToString() == "")
            {
                throw new Exception("WxPayData簽名存在但不合法!");
            }

            //獲取接收到的簽名
            string return_sign = GetValue("sign").ToString();

            //在本地計算新的簽名
            string cal_sign = MakeSign(signType);

            if (cal_sign == return_sign)
            {
                return true;
            }

            throw new Exception("WxPayData簽名驗證錯誤!");
        }



        /**
        * 
        * 檢測簽名是否正確
        * 正確返回true,錯誤拋異常
        */
        public bool CheckSign()
        {
            return CheckSign(SIGN_TYPE_HMAC_SHA256);
        }

        /**
        * @獲取Dictionary
        */
        public SortedDictionary<string, object> GetValues()
        {
            return m_values;
        }


        private string CalcHMACSHA256Hash(string plaintext, string salt)
        {
            string result = "";
            var enc = Encoding.Default;
            byte[]
            baText2BeHashed = enc.GetBytes(plaintext),
            baSalt = enc.GetBytes(salt);
            System.Security.Cryptography.HMACSHA256 hasher = new HMACSHA256(baSalt);
            byte[] baHashedText = hasher.ComputeHash(baText2BeHashed);
            result = string.Join("", baHashedText.ToList().Select(b => b.ToString("x2")).ToArray());
            return result;
        }




    }
 
 /**
        * 生成隨機串,隨機串包含字母或數字
        * @return 隨機串
        */
        public static string GenerateNonceStr()
        {
            RandomGenerator randomGenerator = new RandomGenerator();
            return randomGenerator.GetRandomUInt().ToString();
        }
public class RandomGenerator
    {
        readonly RNGCryptoServiceProvider csp;

        public RandomGenerator()
        {
            csp = new RNGCryptoServiceProvider();
        }

        public int Next(int minValue, int maxExclusiveValue)
        {
            if (minValue >= maxExclusiveValue)
                throw new ArgumentOutOfRangeException("minValue must be lower than maxExclusiveValue");

            long diff = (long)maxExclusiveValue - minValue;
            long upperBound = uint.MaxValue / diff * diff;

            uint ui;
            do
            {
                ui = GetRandomUInt();
            } while (ui >= upperBound);
            return (int)(minValue + (ui % diff));
        }

        public uint GetRandomUInt()
        {
            var randomBytes = GenerateRandomBytes(sizeof(uint));
            return BitConverter.ToUInt32(randomBytes, 0);
        }

        private byte[] GenerateRandomBytes(int bytesNumber)
        {
            byte[] buffer = new byte[bytesNumber];
            csp.GetBytes(buffer);
            return buffer;
        }
    }

 二、微信支付結果回調接收

(1)支付回調主接收方法

 /// <summary>
        /// 微信支付回調函數
        /// </summary>
        /// <returns></returns>
        [HttpPost]
        [AllowAnonymous]
        public async Task WxPayNotify()
        {
            HttpContext context = _httpContextAccessor.HttpContext;
            try
            {
                WxPayData notifyData = GetNotifyData(context);
                Log.Information("GetNotifyData finished");
                //檢查支付結果中transaction_id是否存在
                if (!notifyData.IsSet("transaction_id"))
                {
                    //若transaction_id不存在,則立即返回結果給微信支付後臺
                    WxPayData res = new WxPayData();
                    res.SetValue("return_code", "FAIL");
                    res.SetValue("return_msg", "支付結果中微信訂單號不存在");
                    await context.Response.WriteAsync(res.ToXml());
                }

                string transaction_id = notifyData.GetValue("transaction_id").ToString();
                string out_trade_no = notifyData.GetValue("out_trade_no").ToString();
                //查詢訂單,判斷訂單真實性
                if (!QueryOrder(transaction_id))
                {
                    //若訂單查詢失敗,則立即返回結果給微信支付後臺
                    WxPayData res = new WxPayData();
                    res.SetValue("return_code", "FAIL");
                    res.SetValue("return_msg", "訂單查詢失敗");
                    await context.Response.WriteAsync(res.ToXml());
                }
                //查詢訂單成功
                else
                {
                    //判斷訂單號和支付金額是否和資料庫中一致
                    //修改訂單狀態,插入支付payment信息
                    string result_code = notifyData.GetValue("result_code").ToString();
                    string openid = notifyData.GetValue("openid").ToString();
                    string trade_type = notifyData.GetValue("trade_type").ToString();
                    string bank_type = notifyData.GetValue("bank_type").ToString();
                    int total_fee = Convert.ToInt32(notifyData.GetValue("total_fee"));
                    int cash_fee = Convert.ToInt32(notifyData.GetValue("cash_fee"));
                    string time_end = notifyData.GetValue("time_end").ToString();
                    Log.Information($"out_trade_no is {out_trade_no}");
                    var orderInfo = await _orderRepository.FindAsync(item => item.OrderNumber.ToString() == out_trade_no);
                    if (orderInfo == null)
                    {
                        //若訂單查詢失敗,則立即返回結果給微信支付後臺
                        WxPayData res = new WxPayData();
                        res.SetValue("return_code", "FAIL");
                        res.SetValue("return_msg", "商戶訂單不存在");
                        await context.Response.WriteAsync(res.ToXml());
                    }
                    Log.Information($"total_fee is {total_fee}");
                    Log.Information($"DiscountPrice*100 is {orderInfo.DiscountPrice * 100}"	   

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 核心配置文件 mybatis-config.xml 系統核心配置文件 MyBatis 的配置文件包含了會深深影響 MyBatis 行為的設置和屬性信息。 能配置的內容如下: configuration(配置) properties(屬性) settings(設置) typeAliases(類型別名) ...
  • 一、重用父類方法 1 與繼承沒有關係的重用 指名道姓的使用 在子類里想用父類的方法,我們可以直接用父類名.方法名() >父類里方法有幾個參數就傳幾個參數 我們看起來是子類在調用父類的方法,但是實際上,這並沒有存在繼承關係 class A: def __init__(self,name,age): s ...
  • 1、MyBatis簡介 1.1、什麼是MyBatis MyBatis 是一款優秀的持久層框架 MyBatis 避免了幾乎所有的 JDBC 代碼和手動設置參數以及獲取結果集的過程 MyBatis 可以使用簡單的 XML 或註解來配置和映射原生信息,將介面和 Java 的 實體類 【Plain Old ...
  • 最近網上看到了電子郵箱的新利用方法如題,下載了幾個此類軟體,發現好幾個不是不好用,就是功能不全。上博客園搜了一下,那麼可以看到有使用java和python實現的,這裡我們用Windows的批處理實現。 我們要實現的最基礎的功能,自然是執行cmd命令,有了這個其他都好說。 Windows批處理的優點: ...
  • 在 C++ 中為了操作簡潔引入了函數模板。所謂的函數模板實際上是建立一個通用函數,其函數類型或形參類型不具體指定,用一個虛擬的類型來表達,這個通用函數就稱為函數模板。 1、通用的寫法 函數模板不是一個具體的函數,編譯器不能為其生成可執行代碼。定義函數模板後只是一個對函數功能框架的描述,當它具體執行時 ...
  • 力扣104 求二叉樹的最大深度 題目: 給定一個二叉樹,找出其最大深度。 二叉樹的深度為根節點到最遠葉子節點的最長路徑上的節點數。 說明: 葉子節點是指沒有子節點的節點。 示例 給定二叉樹 [3,9,20,null,null,15,7], 3 / \ 9 20 / \ 15 7 返回它的最大深度 3 ...
  • 前言: 前面的四個章節我們主要講解了MongoDB的相關基礎知識,接下來我們就開始進入使用.NET7操作MongoDB開發一個ToDoList系統實戰教程。本章節主要介紹的是如何快熟搭建一個簡單明瞭的後端項目框架。 MongoDB從入門到實戰的相關教程 MongoDB從入門到實戰之MongoDB簡介 ...
  • 在實際業務中,當後臺數據發生變化,客戶端能夠實時的收到通知,而不是由用戶主動的進行頁面刷新才能查看,這將是一個非常人性化的設計。有沒有那麼一種場景,後臺數據明明已經發生變化了,前臺卻因為沒有及時刷新,而導致頁面顯示的數據與實際存在差異,從而造成錯誤的判斷。那麼如何才能在後臺數據變更時及時通知客戶端呢... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...