gpt4 book ai didi

Paypal rest sdk-内部服务错误发生错误

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

我正在尝试使用 paypal rest sdk 执行交易。

我正在尝试使用与 sdk 文档相同的方式:.

OAuthTokenCredential tokenCredential = 新的 OAuthTokenCredential("", "");

String accessToken = tokenCredential.getAccessToken();

Address billingAddress = new Address();
billingAddress.setLine1("52 N Main ST");
billingAddress.setCity("Johnstown");
billingAddress.setCountryCode("US");
billingAddress.setPostalCode("43210");
billingAddress.setState("OH");

CreditCard creditCard = new CreditCard();
creditCard.setNumber("4417119669820331");
creditCard.setType("visa");
creditCard.setExpireMonth("11");
creditCard.setExpireYear("2018");
creditCard.setCvv2("874");
creditCard.setFirstName("Joe");
creditCard.setLastName("Shopper");
creditCard.setBillingAddress(billingAddress);

AmountDetails amountDetails = new AmountDetails();
amountDetails.setSubtotal("7.41");
amountDetails.setTax("0.03");
amountDetails.setShipping("0.03");

Amount amount = new Amount();
amount.setTotal("7.47");
amount.setCurrency("USD");
amount.setDetails(amountDetails);

Transaction transaction = new Transaction();
transaction.setAmount(amount);
transaction.setDescription("This is the payment transaction description.");

List<Transaction> transactions = new ArrayList<Transaction>();
transactions.add(transaction);

FundingInstrument fundingInstrument = new FundingInstrument();
fundingInstrument.setCreditCard(creditCard);

List<FundingInstrument> fundingInstruments = new ArrayList<FundingInstrument>();
fundingInstruments.add(fundingInstrument);

Payer payer = new Payer();
payer.setFundingInstruments(fundingInstruments);
payer.setPaymentMethod("credit_card");

Payment payment = new Payment();
payment.setIntent("sale");
payment.setPayer(payer);
payment.setTransactions(transactions);

Payment createdPayment = payment.create(accessToken);

Payment executePayment = Payment.get(accessToken, "PAY-34629814WL663112AKEE3AWQ");

PaymentExecution paymentExecution = new PaymentExecution();
paymentExecution.setPayerId("7E7MGXCWTTKK2");

Payment newPayment = executePayment.execute(accessToken, paymentExecution);

但是我遇到了异常

Caused by: com.paypal.exception.HttpErrorException: Error code : 500 with response : 
{"name":"INTERNAL_SERVICE_ERROR","message":"An internal service error has occurred","information_link":
"https://developer.paypal.com/webapps/developer/docs/api/#INTERNAL_SERVICE_ERROR","debug_id":"7a7f0k30b2719"}
at com.paypal.core.HttpConnection.execute(HttpConnection.java:108)
at com.paypal.core.rest.PayPalResource.execute(PayPalResource.java:321)
... 214 more

谁能告诉我为什么会出现这个错误?

谢谢,

最佳答案

不幸的是,我发现 PayPal 沙盒不是很可靠。您在此列表中找到的任何信用卡:http://www.paypalobjects.com/en_US/vhelp/paypalmanager_help/credit_card_numbers.htm可以并且最终会从 PayPal 返回错误 500。

不断更改您的测试信用卡号以避免此问题。

您也可以使用自己的信用卡号,因为沙盒环境无论如何都不会向您的帐户收取任何费用。

我希望我有一个更好的答案,因为我也遇到了这个问题。

参见:PayPal Sandbox Internal Service Error

关于Paypal rest sdk-内部服务错误发生错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21374622/

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