如何給你的網(wǎng)站接入支付寶?
本文介紹了網(wǎng)站如何接入支付寶。
1 注冊(cè)企業(yè)支付寶帳號(hào)
https://enterpriseportal.alipay.com/login.htm
2 實(shí)名認(rèn)證
提供公司相關(guān)證件進(jìn)行實(shí)名認(rèn)證,提交后,通過(guò)了會(huì)收到通知郵件。
3選擇產(chǎn)品、簽約
http://app.alipay.com/container/web/enterpriseIndex.htm
選擇產(chǎn)品、費(fèi)率后,時(shí)行簽約申請(qǐng),通過(guò)后會(huì)收到通知郵件。
4 技術(shù)集成 4.1下載技術(shù)集成文檔
在你的簽約管理里可以下載技術(shù)集成文檔:
<img src="http://upload.chinaz.com/2015/0617/1434510530469.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="601" style="width:600px;height:auto;" />
4.2 打開Demo網(wǎng)站
純擔(dān)保交易接口-create_partner_trade_by_buyer(20150312)democreate_partner_trade_by_buyer-CSHARP-UTF-8
4.3 修改參數(shù)
修改app_codeAlipayConfig.cs文件里的參數(shù),這里的參數(shù)可以在上圖中找到(查看PID |Key):
4.4 配置Url
Web.Config里添加一個(gè)配置項(xiàng):
<appSettings> <add key="url" value="http://localhost:8299/"/> </appSettings>
然后在default.aspx.cs里引用:
//服務(wù)器異步通知頁(yè)面路徑 string notify_url = ConfigurationManager.AppSettings["url"] + "notify_url.aspx"; //需http://格式的完整路徑,不能加?id=123這類自定義參數(shù) //頁(yè)面跳轉(zhuǎn)同步通知頁(yè)面路徑 string return_url = ConfigurationManager.AppSettings["url"] + "return_url.aspx";
4.5 運(yùn)行網(wǎng)站
填寫demo頁(yè)的必填項(xiàng)
<img src="http://upload.chinaz.com/2015/0617/1434510530744.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="606" style="width:600px;height:auto;" />
提交后,會(huì)轉(zhuǎn)到支付寶的界面:
<img src="http://upload.chinaz.com/2015/0617/1434510530156.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="613" style="width:600px;height:auto;" />
5 發(fā)貨
買家付款后,就可以在企業(yè)支付寶里的“賣出交易”里查詢到這筆交易“等待賣家發(fā)貨”:
<img src="http://upload.chinaz.com/2015/0617/1434510530298.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="611" style="width:600px;height:auto;" />
點(diǎn)擊“發(fā)貨”后,填寫發(fā)貨的信息提交:
<img src="http://upload.chinaz.com/2015/0617/1434510530245.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="608" style="width:600px;height:auto;" />
6 確認(rèn)收貨
買家收到貨后,可以在個(gè)人支付寶帳戶里的“交易記錄”里找到這筆交易,并可確認(rèn)收貨:
<img src="http://upload.chinaz.com/2015/0617/1434510530865.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="622" style="width:600px;height:auto;" />
至此,所有流程都完成了。