91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現支付寶新版支付請求接口調用

發布時間:2021-08-09 09:43:47 來源:億速云 閱讀:183 作者:小新 欄目:編程語言

這篇文章主要介紹C#如何實現支付寶新版支付請求接口調用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內容如下

因為支付寶已經集成了完整的SDK,所以可以使用SDK直接調用API,這里獲取SDK源碼。

首先我們需要引用支付寶SDK集成 AopSdk.dll。

添加相關引用:

using Aop.Api;
using Aop.Api.Domain;
using Aop.Api.Request;
using Aop.Api.Response;

需要用到商戶私鑰,支付寶公鑰,請求地址等公共參數,所以可以新建一個config文件:

public class newalipayconfig
{
 public newalipayconfig()
 {
 //
 // TODO: 在此處添加構造函數邏輯
 //
 }
 // 應用ID,您的APPID
 public static string app_id = "";
 
 // 支付寶網關
 public static string gatewayUrl = "https://openapi.alipay.com/gateway.do";
 
 // 支付寶公鑰,查看地址:https://openhome.alipay.com/platform/keyManage.htm 對應APPID下的支付寶公鑰。 
 public static string alipay_public_key = "";
      
 // 商戶私鑰,您的原始格式RSA私鑰
 public static string private_key = "";
 
 // 簽名方式
 public static string sign_type = "RSA2";
 
 // 編碼格式
 public static string charset = "UTF-8";
}

支付請求處理頁面:

DefaultAopClient client = new DefaultAopClient(newalipayconfig.gatewayUrl, newalipayconfig.app_id, newalipayconfig.private_key, "json", version, newalipayconfig.sign_type, newalipayconfig.alipay_public_key, newalipayconfig.charset, false);
 
 if (order != null)
 {
  // 支付中途退出返回商戶網站地址
  string quit_url = "www.alipay.com";
 
  // 組裝業務參數model
  AlipayTradeWapPayModel model = new AlipayTradeWapPayModel();
  model.Body = body; //商品描述
  model.Subject = subject; //商品名稱
  model.TotalAmount = total_amount; ////訂單總金額,單位為元,精確到小數點后兩位,取值范圍[0.01,100000000]
  model.OutTradeNo = out_trade_no; //商戶網站唯一訂單號
  model.ProductCode = "QUICK_WAP_WAY";//銷售產品碼,商家和支付寶簽約的產品碼。
  model.QuitUrl = quit_url;
 
  AlipayTradeWapPayRequest request = new AlipayTradeWapPayRequest();
  // 設置支付完成同步回調地址
  request.SetReturnUrl(AlipayConfig.Call_back_url);
  // 設置支付完成異步通知接收地址
  request.SetNotifyUrl(AlipayConfig.Notify_url);
  // 將業務model載入到request
  request.SetBizModel(model);
 
  AlipayTradeWapPayResponse response = null;
  try
  {
  response = client.pageExecute(request, null, "post");
  Response.Write(response.Body);
  }
  catch (Exception exp)
  {
  throw exp;
  }
 }

以上是“C#如何實現支付寶新版支付請求接口調用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临西县| 门头沟区| 镇远县| 翼城县| 吉木乃县| 石楼县| 金堂县| 忻城县| 鱼台县| 泸溪县| 赞皇县| 东台市| 静宁县| 北票市| 阳西县| 洛川县| 介休市| 双柏县| 左云县| 海阳市| 麻城市| 龙口市| 嘉兴市| 桂阳县| 治多县| 文山县| 三都| 吉木萨尔县| 门头沟区| 山阳县| 雅安市| 旺苍县| 阆中市| 杨浦区| 永清县| 思南县| 葫芦岛市| 台东县| 淄博市| 丰城市| 中西区|