PayPal REST API returns INVALID_CURRENCY_AMOUNT_FORMAT



响应代码:400详细信息:名称:VALIDATION_ERROR消息:无效请求-请参阅详细信息:[{"field":"transactions.amount","issue":"无法构造com.paypal.platform.payments.model.rest.common.Amount的实例,>问题:INVALID_CURRENCY_AMOUNT_FORMAT"}]调试id:86ad5783892c3信息链接:https://developer.paypal.com/docs/api/payments/#errors

package com.spring.soap.api;

@Configuration
public class PaypalConfig {
@Value("${paypal.client.id}")
private String clientId;
@Value("${paypal.client.secret}")
private String clientSecret;
@Value("${paypal.mode}")
private String mode;
@Bean
public Map<String,String> paypalSdkConfig(){
Map<String,String> configMap= new HashMap<>();
configMap.put("mode",mode);
return configMap;
}
@Bean
public OAuthTokenCredential oAuthTokenCredential() {
return new OAuthTokenCredential(clientId,clientSecret,paypalSdkConfig());
}
@Bean
public APIContext apiContext() throws PayPalRESTException {
APIContext context = new APIContext(oAuthTokenCredential().getAccessToken());
context.setConfigurationMap(paypalSdkConfig());
return context;
}

}
{
@Autowired
PaypalService service;

public static final String SUCCESS_URL = "pay/success";
public static final String CANCEL_URL = "pay/cancel";
@GetMapping("/")
public  String home() {
return "home";
}
@PostMapping("/pay")
public String payment(@ModelAttribute("order") Order order) {
try {
Payment payment = service.createPayment(order.getPrice(), order.getCurrency(), order.getMethod(),
order.getIntent(), order.getDescription(), "http://localhost:9090/" + CANCEL_URL,
"http://localhost:9090/" + SUCCESS_URL);
for(Links link:payment.getLinks()) {
if(link.getRel().equals("approval_url")) {
return "redirect:"+link.getHref();
}
}
} catch (PayPalRESTException e) {
e.printStackTrace();
}
return "redirect:/";
}
@GetMapping(value = CANCEL_URL)
public String cancelPay() {
return "cancel";
}
@GetMapping(value = SUCCESS_URL)
public String successPay(@RequestParam("paymentId") String paymentId, @RequestParam("PayerID") String payerId) {
try {
Payment payment = service.executePayment(paymentId, payerId);
System.out.println(payment.toJSON());
if (payment.getState().equals("approved")) {
return "success";
}
} catch (PayPalRESTException e) {
System.out.println(e.getMessage());
}
return "redirect:/";
}

}
{
@Autowired
private APIContext apiContext;
public Payment createPayment(
Double total, 
String currency, 
String method,
String intent,
String description, 
String cancelUrl, 
String successUrl) throws PayPalRESTException{
Amount amount = new Amount();
amount.setCurrency(currency);
total = new BigDecimal(total).setScale(2, RoundingMode.HALF_UP).doubleValue();
amount.setTotal(String.format("%.2f", total));
Transaction transaction = new Transaction();
transaction.setDescription(description);
transaction.setAmount(amount);
List<Transaction> transactions = new ArrayList<>();
transactions.add(transaction);
Payer payer = new Payer();
payer.setPaymentMethod(method);
Payment payment = new Payment();
payment.setIntent(intent);
payment.setPayer(payer);  
payment.setTransactions(transactions);
RedirectUrls redirectUrls = new RedirectUrls();
redirectUrls.setCancelUrl(cancelUrl);
redirectUrls.setReturnUrl(successUrl);
payment.setRedirectUrls(redirectUrls);
return payment.create(apiContext);
}
public Payment executePayment(String paymentId, String payerId) throws PayPalRESTException{
Payment payment = new Payment();
payment.setId(paymentId);
PaymentExecution paymentExecute = new PaymentExecution();
paymentExecute.setPayerId(payerId);
return payment.execute(apiContext, paymentExecute);
}

}

您的语言环境似乎正在用逗号(,(作为小数分隔符格式化小数。

PayPal API只接受带句点(.(的数字作为十进制分隔符

取此行:

amount.setTotal(String.format("%.2f", total));

%.2f更改为%.3f。最后的代码应该是这样的:

amount.setTotal(String.format("%.3f", total));

在我的案例中,我发送了带有非四舍五入值的SubTotal on Details:

141.750

所以我就这样四舍五入:

details.setSubtotal(subTotal.setScale(2, BigDecimal.ROUND_HALF_EVEN).toString());

(换句话说(

141.75

相关内容

  • 没有找到相关文章

最新更新