C#支付宝新版支付请求接口调用
本文实例为大家分享了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#获取日期的星期名称实例代码
栏 目:C#教程
下一篇:C#公众号开发之给用户发红包
本文标题:C#支付宝新版支付请求接口调用
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/5117.html
您可能感兴趣的文章
- 01-10c#版在pc端发起微信扫码支付的实例
- 01-10C# MVC 微信支付教程系列之公众号支付代码
- 01-10C# MVC 微信支付教程系列之扫码支付代码实例
- 01-10C# 微信支付 wx.chooseWXPay 签名错误的解决方法
- 01-10C#支付宝扫码支付代码完整版
- 01-10微信小程序支付C#后端源码
- 01-10基于C#实现微信支付宝扫码支付功能
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 01-10SublimeText编译C开发环境设置
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10C#中split用法实例总结
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10delphi制作wav文件的方法
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-11ajax实现页面的局部加载
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 04-02jquery与jsp,用jquery