找不到 PayPal SetExpressCheckout 方法
Can't find PayPal SetExpressCheckout Method
正在尝试使用 SOAP 实施 PayPal 的快速结帐。我已经导入了他们网站上列出的 .wsdl。文档说要调用 SetExpressCheckout 方法,但是我在任何地方都找不到。我检查了 Reference.cs 但也没有看到它。我查看了以下所有 classes,名称几乎匹配但没有骰子。
SetExpressCheckoutRequest aaa= new SetExpressCheckoutRequest();
SetExpressCheckoutRequestType bbb = new SetExpressCheckoutRequestType();
SetExpressCheckoutReq ccc= new SetExpressCheckoutReq();
SetExpressCheckoutResponse ddd = new SetExpressCheckoutResponse();
SetExpressCheckoutResponseType eee = new SetExpressCheckoutResponseType();
GetExpressCheckoutDetailsRequestType fff = new GetExpressCheckoutDetailsRequestType();
在什么下 class 这存在吗?
wsdl 版本="124.0"
https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl
提前致谢
免责声明 - 已经有一段时间没有使用 Paypal SOAP API
刚刚 wsdl
在该资源上生成代理 类 并且可以看到:PayPalAPIAASoapBinding
有一个方法 SetExpressCheckout
- 需要一个
SetExpressCheckoutReq
参数,并且会 return
SetExpressCheckoutResponseType
包含 token
第...
正在尝试使用 SOAP 实施 PayPal 的快速结帐。我已经导入了他们网站上列出的 .wsdl。文档说要调用 SetExpressCheckout 方法,但是我在任何地方都找不到。我检查了 Reference.cs 但也没有看到它。我查看了以下所有 classes,名称几乎匹配但没有骰子。
SetExpressCheckoutRequest aaa= new SetExpressCheckoutRequest();
SetExpressCheckoutRequestType bbb = new SetExpressCheckoutRequestType();
SetExpressCheckoutReq ccc= new SetExpressCheckoutReq();
SetExpressCheckoutResponse ddd = new SetExpressCheckoutResponse();
SetExpressCheckoutResponseType eee = new SetExpressCheckoutResponseType();
GetExpressCheckoutDetailsRequestType fff = new GetExpressCheckoutDetailsRequestType();
在什么下 class 这存在吗?
wsdl 版本="124.0"
https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl
提前致谢
免责声明 - 已经有一段时间没有使用 Paypal SOAP API
刚刚 wsdl
在该资源上生成代理 类 并且可以看到:PayPalAPIAASoapBinding
有一个方法 SetExpressCheckout
- 需要一个
SetExpressCheckoutReq
参数,并且会 return SetExpressCheckoutResponseType
包含token
第...