无法找到PayPal SetExpressCheckout方法

时间:2015-09-25 02:02:57

标签: c# web-services soap paypal wsdl

尝试使用SOAP实现PayPal的Express Checkout。我已导入其网站上列出的.wsdl。文档说要调用SetExpressCheckout方法,但我无法在任何地方找到它。我已经查看了Reference.cs,但也没有看到它。我已经查看了以下所有类别,但是没有骰子。

    SetExpressCheckoutRequest aaa= new SetExpressCheckoutRequest();
    SetExpressCheckoutRequestType bbb = new SetExpressCheckoutRequestType();
    SetExpressCheckoutReq ccc= new SetExpressCheckoutReq();
    SetExpressCheckoutResponse ddd = new SetExpressCheckoutResponse();
    SetExpressCheckoutResponseType eee = new SetExpressCheckoutResponseType();
    GetExpressCheckoutDetailsRequestType fff  = new GetExpressCheckoutDetailsRequestType();

这是什么类?

wsdl version =" 124.0"
https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl

提前致谢

1 个答案:

答案 0 :(得分:0)

免责声明 - 很长一段时间没有使用Paypal SOAP API

刚刚在wsdl上生成了该资源的代理类,可以看到:PayPalAPIAASoapBinding有一个方法SetExpressCheckout

  • 需要SetExpressCheckoutReq参数,并将返回
  • SetExpressCheckoutResponseType包含token

... H个