0
PHP 용 PayPal SDK를 사용 중입니다. 인보이스를 취소하려고합니다. 반환되는 결과는 "true"이며 예외는 반환되지 않지만 인보이스는 취소되지 않습니다. . 내 코드에 오류가 있는지 말해 줄 수 있습니까?PayPal PHP SDK - 인보이스 취소 기능이 작동하지 않음
$Invoice = new Invoice();
try {
$invoice = $Invoice->get($id_invoice, $apiContext);
$notify = new CancelNotification();
$notify->setSubject("Past due")
->setNote("Canceling invoice")
->setSendToMerchant(true)
->setSendToPayer(true);
$result = $Invoice->cancel($notify, $apiContext);
} catch (Exception $ex) {
$result = self::getException($ex);
}
return $result;
멋진! 고마워! – Roilld
위대한 !! 이 설명을 답으로 표시 할 수 있는지 확인하십시오. 비슷한 문제가있는 다른 개발자에게 도움이 될 수 있습니다. –