【发布时间】:2016-07-18 02:56:15
【问题描述】:
我在我的网络应用程序中使用authorize.net API 进行结帐流程。所以,第一步通过了,用户已经付款,我得到了token 和PayerID。但现在我想获取用户详细信息。我在 vb.net 中找到了这样的代码:
postData.Append("USER=" + System.Configuration.ConfigurationManager.AppSettings("PaypalUser"))
postData.Append("&PWD=" + System.Configuration.ConfigurationManager.AppSettings("PaypalPWD"))
postData.Append("&SIGNATURE=" + System.Configuration.ConfigurationManager.AppSettings("Signature"))
postData.Append("&VERSION=95")
Dim strParams As Dictionary(Of String, String)
strParams = GetResponse(postData.ToString() + "&METHOD=GetExpressCheckoutDetails&TOKEN=" + Session("Paypal_Token"), "GetExpressCheckoutDetails", GetSessionID)
Dim a = strParams("FIRSTNAME")
...
但我想使用 authorize.net API。谁能帮帮我?
【问题讨论】:
标签: c# vb.net paypal authorize.net