如何给你的网站接入支付宝?
本文介绍了网站如何接入支付宝。
1 注册企业支付宝帐号
https://enterpriseportal.alipay.com/login.htm
2 实名认证
提供公司相关证件进行实名认证,提交后,通过了会收到通知邮件。
3选择产品、签约
http://app.alipay.com/container/web/enterpriseIndex.htm
选择产品、费率后,时行签约申请,通过后会收到通知邮件。
4 技术集成 4.1下载技术集成文档
在你的签约管理里可以下载技术集成文档:
<img src="http://upload.chinaz.com/2015/0617/1434510530469.jpg" alt="支付宝 网站接入支付宝" border="0" width="601" style="width:600px;height:auto;" />
4.2 打开Demo网站
纯担保交易接口-create_partner_trade_by_buyer(20150312)democreate_partner_trade_by_buyer-CSHARP-UTF-8
4.3 修改参数
修改app_codeAlipayConfig.cs文件里的参数,这里的参数可以在上图中找到(查看PID |Key):
4.4 配置Url
Web.Config里添加一个配置项:
<appSettings> <add key="url" value="http://localhost:8299/"/> </appSettings>
然后在default.aspx.cs里引用:
//服务器异步通知页面路径 string notify_url = ConfigurationManager.AppSettings["url"] + "notify_url.aspx"; //需http://格式的完整路径,不能加?id=123这类自定义参数 //页面跳转同步通知页面路径 string return_url = ConfigurationManager.AppSettings["url"] + "return_url.aspx";
4.5 运行网站
填写demo页的必填项
<img src="http://upload.chinaz.com/2015/0617/1434510530744.jpg" alt="支付宝 网站接入支付宝" border="0" width="606" style="width:600px;height:auto;" />
提交后,会转到支付宝的界面:
<img src="http://upload.chinaz.com/2015/0617/1434510530156.jpg" alt="支付宝 网站接入支付宝" border="0" width="613" style="width:600px;height:auto;" />
5 发货
买家付款后,就可以在企业支付宝里的“卖出交易”里查询到这笔交易“等待卖家发货”:
<img src="http://upload.chinaz.com/2015/0617/1434510530298.jpg" alt="支付宝 网站接入支付宝" border="0" width="611" style="width:600px;height:auto;" />
点击“发货”后,填写发货的信息提交:
<img src="http://upload.chinaz.com/2015/0617/1434510530245.jpg" alt="支付宝 网站接入支付宝" border="0" width="608" style="width:600px;height:auto;" />
6 确认收货
买家收到货后,可以在个人支付宝帐户里的“交易记录”里找到这笔交易,并可确认收货:
<img src="http://upload.chinaz.com/2015/0617/1434510530865.jpg" alt="支付宝 网站接入支付宝" border="0" width="622" style="width:600px;height:auto;" />
至此,所有流程都完成了。