gpt4 book ai didi

java - PayPal PaymentDetails getReceiverList() 为空。为什么?

转载 作者:太空宇宙 更新时间:2023-11-03 16:04:13 27 4
gpt4 key购买 nike

我正在使用 PayPal Adaptive Payments 的 IPN。我能够让 IPN 工作,但是当我决定从 PayPal 取回已完成交易的付款详细信息时,PaymentDetails 类的 getReceiverList 方法返回 null。

PaymentDetailsRequest paymentDetailsRequest = new PaymentDetailsRequest("en_US", ServiceEnvironment.SANDBOX);
paymentDetailsRequest.setPayKey(payKey);
PaymentDetailsResponse paymentDetailsResponse = paymentDetailsRequest.execute(credentialObj);

PaymentDetails paymentDetails = paymentDetailsResponse.getPaymentDetails();
List<Receiver> receiverList = paymentDetails.getReceiverList();
// receiverList returns null

这不应该发生,因为交易已经完成并且显然有一个接收者。

如果我从同一个 paymentDetails 对象中提取其他数据,例如付款状态,我会得到正确的结果。

String paymentStatus = paymentDetails.getStatus();
// paymentStatus returns COMPLETED

有没有人遇到过这个并能告诉我为什么会这样?

最佳答案

为了防止有人遇到这个问题,我发现 PayPal 自适应支付的 IPN 仍然有很多问题,这就是其中之一。基本上方法 getReceiverList() 没有得到任何东西。对于在应该返回某些内容时返回 null 的每个方法都是这种情况。

关于java - PayPal PaymentDetails getReceiverList() 为空。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5481924/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com