この記事では主に、Alipay への .net アクセスの支払い インターフェース の Web サイト アクセス について詳しく紹介します。興味のある友人は参照してください
H5 のモバイル ウェブサイトです。 Alipay の支払いインターフェイスに接続するため、Alipay が提供する SDK を使用することをお勧めします。SDK 開発には、app_id、merchant_private_key、alipay_public_key が含まれていません。いくつかの操作を完了して取得しますユーザーが支払うためにウェブサイトをクリックすると、支払いを行うために Alipay を起動する必要がありますusing Aop.Api; using Aop.Api.Request; using Aop.Api.Response; using Aop.Api.Util;
メソッドの実行後、購入者は支払いのために自分の Alipay アカウントのパスワードを入力します。支払いが成功すると、Alipay は投稿の形式で SetNotifyUrl アドレスを非同期的に要求しますこの SetNotifyUrl アドレスは外部ネットワーク上にある必要があります。アクセスでき、Alipay の要求が届く可能性があります
購入者が正常に支払い、販売者が注文ステータスを変更し、データベース操作が非同期リクエストで実行されます
同期リクエストstatic string serverUrl = "https://openapi.alipaydev.com/gateway.do"; static string app_id = "**"; //开发者的应用ID static string format = "JSON"; static string charset = "utf-8"; static string sign_type = "RSA2"; //签名格式 static string version = "1.0"; string UID = "2088102169707816";//卖家支付宝账户号 //商户私钥 static string merchant_private_key = "***"; //支付宝公钥 static string alipay_public_key = "***";
public string H5RequestPayWay(OrderPO order) { IAopClient client = new DefaultAopClient(serverUrl, app_id, merchant_private_key, format, version, sign_type, alipay_public_key, charset, false); AlipayTradeWapPayRequest request = new AlipayTradeWapPayRequest(); string address= "http://m." + PathLogic1.RootDomain; request.SetReturnUrl(address+ "/WebPay/AlipayPayResult");//同步请求 request.SetNotifyUrl(address + "/WebPay/AsyncPay");//异步请求 var lstDetail = Context.Data.OrderDetail.Where(x => x.OrderNo == order.OrderNo).ToSelectList(x=>new { x.SkuName}); StringBuilder sb = new StringBuilder(); for (int i = 0; i < lstDetail.Count(); i++) { sb.Append(lstDetail[i].SkuName + ","); } request.BizContent = "{" + "\"body\":\""+sb.ToString().Substring(0,sb.Length-1)+"\"," + "\"subject\":\"袋鼠巴巴商品支付\"," + "\"out_trade_no\":\""+order.OrderNo+"\"," + "\"timeout_express\":\"90m\"," + "\"total_amount\":"+(order.TotalAmount.Value+order.TotalFreight.Value)+"," + "\"product_code\":\"QUICK_WAP_PAY\"" + " }"; AlipayTradeWapPayResponse response = client.pageExecute(request); return response.Body; }
public ActionResult AlipayPayResult() { ViewBag.result = "success"; return View("PayResult"); }
非同期リクエスト:
/// <summary> /// 验证通知数据的正确性 /// </summary> /// <param name="out_trade_no"></param> /// <param name="total_amount"></param> /// <param name="seller_id"></param> /// <returns></returns> private SortedDictionary<string, string> GetRequestPost() { int i = 0; SortedDictionary<string, string> sArray = new SortedDictionary<string, string>(); NameValueCollection coll; //Load Form variables into NameValueCollection variable. coll = Request.Form; // Get names of all forms into a string array. String[] requestItem = coll.AllKeys; for (i = 0; i < requestItem.Length; i++) { sArray.Add(requestItem[i], Request.Form[requestItem[i]]); } return sArray; }
以上が.net を使用して Alipay の支払いインターフェースにアクセスする方法の詳細な例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。