【问题标题】:Get Pay Pal Express Checkout details using authorize.net API使用 authorize.net API 获取 Paypal Express Checkout 详细信息
【发布时间】:2016-07-18 02:56:15
【问题描述】:

我在我的网络应用程序中使用authorize.net API 进行结帐流程。所以,第一步通过了,用户已经付款,我得到了tokenPayerID。但现在我想获取用户详细信息。我在 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


    【解决方案1】:

    Authorize.Net 支持的用于 PayPal 的 API 方法在 API 参考中列出:http://developer.authorize.net/api/reference/index.html#paypal-express-checkout

    【讨论】:

      猜你喜欢
      • 2016-09-24
      • 2017-09-12
      • 2010-11-15
      • 1970-01-01
      • 2012-10-28
      • 2014-04-17
      • 2014-04-17
      • 2012-05-13
      • 2010-12-26
      相关资源
      最近更新 更多