91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡(jiǎn)介

支付寶錢包支付接口開(kāi)發(fā)包2.0標(biāo)準(zhǔn)版(20150331),接口源碼demo,說(shuō)明,各種分辨率圖標(biāo)

資源截圖

代碼片段和文件信息

using?System;
using?System.Data;
using?System.Configuration;
using?System.Web;
using?System.Web.Security;
using?System.Web.UI;
using?System.Web.UI.WebControls;
using?System.Web.UI.WebControls.WebParts;
using?System.Web.UI.HtmlControls;
using?System.Collections.Generic;
using?System.Text;
using?System.IO;
using?System.xml;
using?Com.Alipay;

///?
///?功能:即時(shí)到賬批量退款有密接口接入頁(yè)
///?版本:3.3
///?日期:2012-07-05
///?說(shuō)明:
///?以下代碼只是為了方便商戶測(cè)試而提供的樣例代碼,商戶可以根據(jù)自己網(wǎng)站的需要,按照技術(shù)文檔編寫(xiě)并非一定要使用該代碼。
///?該代碼僅供學(xué)習(xí)和研究支付寶接口使用,只是提供一個(gè)參考。
///?
///?/////////////////注意///////////////////////////////////////////////////////////////
///?如果您在接口集成過(guò)程中遇到問(wèn)題,可以按照下面的途徑來(lái)解決
///?1、商戶服務(wù)中心(https://b.alipay.com/support/helperApply.htm?action=consultationApply),提交申請(qǐng)集成協(xié)助,我們會(huì)有專業(yè)的技術(shù)工程師主動(dòng)聯(lián)系您協(xié)助解決
///?2、商戶幫助中心(http://help.alipay.com/support/232511-16307/0-16307.htm?sh=Y&info_type=9)
///?3、支付寶論壇(http://club.alipay.com/read-htm-tid-8681712.html)
///?
///?如果不想使用擴(kuò)展功能請(qǐng)把擴(kuò)展功能參數(shù)賦空值。
///?

public?partial?class?_Default?:?System.Web.UI.Page?
{
????protected?void?Page_Load(object?sender?EventArgs?e)
????{
????}

????protected?void?BtnAlipay_Click(object?sender?EventArgs?e)
????{
????????////////////////////////////////////////////請(qǐng)求參數(shù)////////////////////////////////////////////

????????//服務(wù)器異步通知頁(yè)面路徑
????????string?notify_url?=?“http://商戶網(wǎng)關(guān)地址/refund_fastpay_by_platform_pwd-CSHARP-UTF-8/notify_url.aspx“;
????????//需http://格式的完整路徑,不允許加?id=123這類自定義參數(shù)

????????//賣家支付寶帳戶
????????string?seller_email?=?WIDseller_email.Text.Trim();
????????//必填

????????//退款當(dāng)天日期
????????string?refund_date?=?WIDrefund_date.Text.Trim();
????????//必填,格式:年[4位]-月[2位]-日[2位]?小時(shí)[2位?24小時(shí)制]:分[2位]:秒[2位],如:2007-10-01?13:13:13

????????//批次號(hào)
????????string?batch_no?=?WIDbatch_no.Text.Trim();
????????//必填,格式:當(dāng)天日期[8位]+序列號(hào)[3至24位],如:201008010000001

????????//退款筆數(shù)
????????string?batch_num?=?WIDbatch_num.Text.Trim();
????????//必填,參數(shù)detail_data的值中,“#”字符出現(xiàn)的數(shù)量加1,最大支持1000筆(即“#”字符出現(xiàn)的數(shù)量999個(gè))

????????//退款詳細(xì)數(shù)據(jù)
????????string?detail_data?=?WIDdetail_data.Text.Trim();
????????//必填,具體格式請(qǐng)參見(jiàn)接口技術(shù)文檔


????????////////////////////////////////////////////////////////////////////////////////////////////////

????????//把請(qǐng)求參數(shù)打包成數(shù)組
????????SortedDictionary?sParaTemp?=?new?SortedDictionary();
????????sParaTemp.Add(“partner“?Config.Partner);
????????sParaTemp.Add(“_input_charset“?Config.Input_charset.ToLower());
????????sParaTemp.Add(“service“?“refund_fastpay_by_platform_pwd“);
????????sParaTemp.Add(“notify_url“?notify_url);
????????sParaTemp.Add(“seller_email“?seller_email);
????????sParaTemp.Add(“refund_date“?refund_date);
????????sParaTemp.Add(“batch_no“?batch_no);
????????sParaTemp.Add(“batch_num“?batch_num);
????????sParaTemp.Add(“detail_data“?detail_data);

????????//建立請(qǐng)求
????????string?sHtmlText?=?Submit.BuildRequest(sParaTemp?“get“?“確認(rèn)“);
????????Response.Write(sHtmlText);
????????
????}
}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件????????887??2011-12-22?13:47??1\rsa_private_key.pem

?????文件????????930??2011-12-22?14:00??1\rsa_private_key_pkcs8.txt

?????文件????????272??2011-12-22?13:57??1\rsa_public_key.pem

?????目錄??????????0??2012-11-27?15:28??1

-----------?---------??----------?-----??----

?????????????????2089????????????????????4


評(píng)論

共有 條評(píng)論