如何給你的網(wǎng)站接入支付寶?
本文介紹了網(wǎng)站如何接入支付寶。
1 注冊企業(yè)支付寶帳號
https://enterpriseportal.alipay.com/login.htm
2 實名認證
提供公司相關(guān)證件進行實名認證,提交后,通過了會收到通知郵件。
3選擇產(chǎn)品、簽約
http://app.alipay.com/container/web/enterpriseIndex.htm
選擇產(chǎn)品、費率后,時行簽約申請,通過后會收到通知郵件。
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)站
純擔保交易接口-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里添加一個配置項:
<appSettings> <add key="url" value="http://localhost:8299/"/> </appSettings>
然后在default.aspx.cs里引用:
//服務器異步通知頁面路徑 string notify_url = ConfigurationManager.AppSettings["url"] + "notify_url.aspx"; //需http://格式的完整路徑,不能加?id=123這類自定義參數(shù) //頁面跳轉(zhuǎn)同步通知頁面路徑 string return_url = ConfigurationManager.AppSettings["url"] + "return_url.aspx";
4.5 運行網(wǎng)站
填寫demo頁的必填項
<img src="http://upload.chinaz.com/2015/0617/1434510530744.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="606" style="width:600px;height:auto;" />
提交后,會轉(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;" />
點擊“發(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 確認收貨
買家收到貨后,可以在個人支付寶帳戶里的“交易記錄”里找到這筆交易,并可確認收貨:
<img src="http://upload.chinaz.com/2015/0617/1434510530865.jpg" alt="支付寶 網(wǎng)站接入支付寶" border="0" width="622" style="width:600px;height:auto;" />
至此,所有流程都完成了。