您好,登錄后才能下訂單哦!
這篇文章主要介紹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#如何實現支付寶新版支付請求接口調用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。