我正在尝试使用适应性付款的预批准。具体来说,从the documentation on Preapproval开始经历四个步骤。

我被curl命令卡在Step 1: Set Up the Preapproval上:

$ curl -s --insecure \
  -H "X-PAYPAL-SECURITY-USERID: myuserid.gmail.com" \
  -H "X-PAYPAL-SECURITY-PASSWORD: mypass" \
  -H "X-PAYPAL-SECURITY-SIGNATURE: mysignaturestring" \
  -H "X-PAYPAL-REQUEST-DATA-FORMAT: NV" \
  -H "X-PAYPAL-RESPONSE-DATA-FORMAT: NV" \
  -H "X-PAYPAL-APPLICATION-ID: APP-80W284485P519543T" \
https://svcs.sandbox.paypal.com/AdaptivePayments/Preapproval  -d \
  "cancelUrl=http://www.yourdomain.com/cancel.html
  &currencyCode=USD
  &endingDate=2014-09-10T22:00:00Z
  &maxAmountPerPayment=200.00
  &maxNumberOfPayments=30
  &maxTotalAmountOfAllPayments=1500.00
  &pinType=NOT_REQUIRED
  &requestEnvelope.errorLanguage=en_US
  &returnUrl=http://www.yourdomain.com/success.html
  &startingDate=2014-08-10T22:00:00Z"


我收到一个错误,而不是preapprovalKey。我知道我发送的数据有问题,但我不知道是什么:

esponseEnvelope.timestamp=2014-08-05T01:24:55.289-07:00
&responseEnvelope.ack=Failure
&responseEnvelope.correlationId=7c6db7beda57a
&responseEnvelope.build=11853342
&error(0).errorId=580001
&error(0).domain=PLATFORM
&error(0).subdomain=Application
&error(0).severity=Error
&error(0).category=Application
&error(0).message=Invalid request: Data validation warning(line -1, col 0): 2014-09-10T22:00:00Z
&error(0).parameter(0)=Data validation warning(line -1, col 0): 2014-09-10T22:00:00Z


请注意:


我的API凭据还可以,我已经在the documentationExpress Checkout上成功测试了它们
有些字段是根据documentation编写的,而其他字段则完全类似于粘贴的文档副本中的内容:

startingDate是将来的日期,文档说不是今天的日期(发布日期)或结束日期之后。
endingDate - startingDate是一个月,不到他们在文档中所说的一年。
我还尝试使用https://apigee.com/console/paypal以防卷毛

最佳答案

该死的,由于我对SO有所了解,我想出了让它看起来对你们来说很漂亮的方法。这是因为空白在\n中输入了(-d \ "cancelUrl=... &currencyCode=USD & ...")。

谢谢,所以这里正确的参考是:

$ curl -s --insecure \
  -H "X-PAYPAL-SECURITY-USERID: myuserid.gmail.com" \
  -H "X-PAYPAL-SECURITY-PASSWORD: mypass" \
  -H "X-PAYPAL-SECURITY-SIGNATURE: mysignaturestring" \
  -H "X-PAYPAL-REQUEST-DATA-FORMAT: NV" \
  -H "X-PAYPAL-RESPONSE-DATA-FORMAT: NV" \
  -H "X-PAYPAL-APPLICATION-ID: APP-80W284485P519543T" \
https://svcs.sandbox.paypal.com/AdaptivePayments/Preapproval  -d \
  "cancelUrl=http://www.yourdomain.com/cancel.html&currencyCode=USD&endingDate=2014-09-10T22:00:00Z&maxAmountPerPayment=200.00&maxNumberOfPayments=30&maxTotalAmountOfAllPayments=1500.00&pinType=NOT_REQUIRED&requestEnvelope.errorLanguage=en_US&returnUrl=http://www.yourdomain.com/success.html&startingDate=2014-08-10T22:00:00Z"

08-17 16:54