我在我的网络应用中使用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。有谁可以帮助我?
答案 0 :(得分:0)
Authorize.Net for PayPal支持的API方法列于API参考:http://developer.authorize.net/api/reference/index.html#paypal-express-checkout