一、前言
# #最近也是為了新產品忙得起飛,博客都更新的慢了。新產品為了方便用戶支付,需要支付寶掃碼接入。這活落到了我的身上。產品是Windows系統下的桌面軟體,透過軟體產生二維碼支付。介面以原生的MVVM編寫,下面敘述一下基本的過程,做過的老司機可以直接點關閉了。
二、申請介面
申請介面是第一步,首先有這麼幾件事:
公司有支付寶帳戶
公司具有營業資質(廢話)
#創建應用程式,簽約電腦網站支付,手機支付,App支付。
##建立私鑰、公鑰、支付寶公鑰
設定網關及回呼位址
## 需要注意的是下列幾點:
######################################################################################## ###############在建立應用程式時,名稱不要帶有「支付」、「pay」等字樣,圖片建議高清############## ###################################### 建立應用程式時,簽約支付需要一些申請資料,如:營業資質照片,公司照片4張,應用程式的介紹(名稱,下載地址,公司網站是否有該應用,該應用程式出現支付寶支付的介面樣式)################ #################################已簽約後需要審核,大致上一天,(阿里確實快,騰訊微信要4天),審核通過會發送一份郵件,裡面有鏈接,點擊鏈接完成簽約######################################## ################建立私鑰、公鑰、支付寶公鑰,在支付寶介面網站上有官方工具,下載使用即可########## ###########網關與回呼位址要與公司網站形成關聯,例如是二級網域名稱;如果網關、回呼位址與公司網站沒什麼聯繫,恐怕不行。
三、程式碼流程
##有三個構成元素。用戶端軟體,商家伺服器後台,支付寶後台
用戶端軟體點選「取得支付二維碼」以獲得一個可支付的二維碼:
######## #################################### 封裝客戶端的一些必要資訊傳送給商家伺服器後台形成一個商家訂單########################################################### #
/// <summary> /// 获取二维码信息 /// </summary> /// <param name="packageClientInfo">封装信息</param> /// <param name="serverAddress">商户产品服务器地址</param> /// <returns></returns> public static void GetQRCodeInfo(string packageClientInfo, string serverAddress, Action<string> getQRCodeAction) { if (!string.IsNullOrEmpty(packageClientInfo)) { try { HttpClient httpsClient = new HttpClient { BaseAddress = new Uri(serverAddress), Timeout = TimeSpan.FromMinutes(20) }; if (DsClientOperation.ConnectionTest(httpsClient)) { StringContent strData = new StringContent( packageClientInfo, Encoding.UTF8, RcCommonNames.JasonMediaType); string PostUrl = httpsClient.BaseAddress + "api/AlipayForProduct/GetQRCodeString"; Uri address = new Uri(PostUrl); Task<HttpResponseMessage> response = httpsClient.PostAsync(address, strData); response.ContinueWith( (postTask) => { if (postTask.IsFaulted) { throw postTask.Exception; } HttpResponseMessage postResponse = postTask.Result; postResponse.EnsureSuccessStatusCode(); var result = postResponse.Content.ReadAsStringAsync().Result; getQRCodeAction(JsonConvert.DeserializeObject<string>(result)); //注意这个委托 return result; }); } } catch { // ignored } } }###### 這裡的委託方法是用來產生二維碼的,當你從這個「###api/AlipayForProduct/GetQRCodeString###」回傳一些字串(result),例如回傳的是:############ ###### "http://xxx.xxx.com/AlipayForProduct/SendInfoToAlipay?ordernumber=" + $"{orderNumber}";(orderNumber為商家訂單號)################## 然後使用ThoughtWorks.QRCode.dll去產生二維碼######
/// <summary> /// 根据字符串得到相应的二维码 /// </summary> /// <param name="qrInfo"></param> /// <param name="productName"></param> /// <param name="version"></param> /// <returns></returns> public static Image CreateQRCodeImage(string qrInfo, string productName, string version) { try { if (!string.IsNullOrEmpty(qrInfo)) { QRCodeEncoder encoder = new QRCodeEncoder { QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE, QRCodeScale = 4, QRCodeVersion = 0, QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M }; //编码方式(注意:BYTE能支持中文,ALPHA_NUMERIC扫描出来的都是数字) //大小(值越大生成的二维码图片像素越高) //版本(注意:设置为0主要是防止编码的字符串太长时发生错误) //错误效验、错误更正(有4个等级) Image image = encoder.Encode(qrInfo, Encoding.GetEncoding("utf-8")); string filename = $"{productName}_{version}.png"; var userLocalPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData); var docPath = Path.Combine(userLocalPath, @"YourProduct\QRCode"); if (!Directory.Exists(docPath)) { Directory.CreateDirectory(docPath); } string filepath = Path.Combine(docPath, filename); using (FileStream fs = new FileStream(filepath, FileMode.OpenOrCreate, FileAccess.Write)) { image.Save(fs, System.Drawing.Imaging.ImageFormat.Png); fs.Close(); image.Dispose(); } return image; } } catch (Exception) { return null; } return null; }### 維碼,說穿了,就是把一個服務的api由字串變成了圖片,當用戶使用支付寶app去掃這個二維碼時,會去請求這個api:########### # ### ###### "http://xxx.xxx.com/AlipayForProduct/SendInfoToAlipay?ordernumber=" + $"{orderNumber}";(orderNumber為商戶訂單號)####### ## #######
orderNumber = Request[ (! matchedItem = db.OrderInfoForProduct.FirstOrDefault(x => x.OrderNumber == (matchedItem != && matchedItem.IsPaid == alipayServerURL = app_id = privateKeyPem = format = version = signType = out_trade_no = orderNumber; product_code = ; total_amount = ; subject = ; body = ; = returnurl = $ notifyurl == = + + body + + + subject + + + out_trade_no + + + total_amount + + + product_code + + requestWap.SetReturnUrl(returnurl); = pNone = + responseWap.Body +
异步请求一般需要做这么几件事:
用户扫码支付完之后,支付宝后台会把所有需要验证的信息发给你,除了一个参数不需要验签完,其余都需要验签;
如果验签成功且支付状态也是成功交易后,你需要更新商户服务器后台关于此条商户订单的状态,比如将其支付状态变成已支付,填充支付时间等等;
<, > sPara = (sPara.Count > sign_type = Request.Form[ seller_id = Request.Form[]; trade_status = Request.Form[]; notify_time = Request.Form[]; app_id = Request.Form[]; out_trade_no = Request.Form[]; total_amount = Request.Form[]; receipt_amount = Request.Form[]; invoice_amount = Request.Form[]; buyer_pay_amount = Request.Form[]; body = Request.Form[]; gmt_payment = Request.Form[]; tradeGuid = isVerfied = AlipaySignature.RSACheckV1(sPara, alipayPublicKey, , sign_type, (app_id == appID && seller_id == isTradeSuccess = .Equals(trade_status, ) || .Equals(trade_status, (
同步请求一般需要做这么几件事:
1. 当异步调用完后,如果支付成功而且商户服务器后台对此条订单号处理也正确的话;同步请求可以再做一次验证
2. 如果验证成功,跳转支付成功页面;如果失败,跳转支付失败页面。
public ActionResult AlipayResult() { SortedDictionary<string, string> sPara = GetRequestGet(); if (sPara.Count > 0) { //非验签参数 var sign_type = Request.QueryString["sign_type"]; //接收参数并排序 var seller_id = Request.QueryString["seller_id"]; //卖家支付宝用户号 var app_id = Request.QueryString["app_id"]; //开发者AppId var out_trade_no = Request.QueryString["out_trade_no"]; //交易订单号 var orderNumberGuid = new Guid(out_trade_no); try { var isVerfied = AlipaySignature.RSACheckV1(sPara, alipayPublicKey, "utf-8", sign_type, false); if (isVerfied) { if (app_id == appID && seller_id == sellerID) { //你的支付成功页面 } } } catch { //你的支付失败页面 } } else { //你的支付失败页面 } return View(); } /// <summary> /// 参数排序字典 /// </summary> /// <returns></returns> private SortedDictionary<string, string> GetRequestGet() { SortedDictionary<string, string> sArray = new SortedDictionary<string, string>(); NameValueCollection coll = Request.QueryString; String[] requestItem = coll.AllKeys; foreach (string t in requestItem) { sArray.Add(t, Request.QueryString[t]); } return sArray; }
以上是.NET支付寶App支付接入的實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!