我正在尝试为全球支付网关创建定期付款。但低于错误 -
所选网关不支持此事务类型。
$config = new ServicesConfig();
$config->merchantId = "MerchantId";
$config->accountId = "AccountId";
$config->sharedSecret = "SharedSecret";
$config->serviceUrl = "https://pay.sandbox.realexpayments.com/pay";
$config->hostedPaymentConfig = new HostedPaymentConfig();
$config->hostedPaymentConfig->version = HppVersion::VERSION_2;
if ($recurring){
$config->hostedPaymentConfig->cardStorageEnabled = "1";
}
$service = new HostedService(
$config
);
$hostedPaymentData = new HostedPaymentData();
$hostedPaymentData->offerToSaveCard = true; // display the save card tick box
$hostedPaymentData->customerExists = false; // new customer
echo $service->Authorize($amount)
->withCurrency($currency_code)
->withRecurringInfo(RecurringType::FIXED, RecurringSequence::FIRST)
->withOrderId($order_id)
->withHostedPaymentData($hostedPaymentData)
->serialize();
在服务器端,我从支付网关收到带有客户 ID 和支付 ID 的 POST 响应。
$parsedResponse = $service->parseResponse(json_encode($_POST));
$responseValues = $parsedResponse->responseValues; // get values accessible by key
$schedule = createSchedule($responseValues);
function createSchedule($responseValues)
{
$schedule = new Schedule();
$customerKey = $responseValues['SAVED_PAYER_REF'];
$paymentMethodKey = $responseValues['SAVED_PMT_REF'];
$orderId = $responseValues['ORDER_ID'];
$amount = $responseValues['AMOUNT'];
$schedule->id = getIdentifier('CreditV');
$schedule->customerKey = $customerKey;
$schedule->paymentKey = $paymentMethodKey;
$schedule->amount = $amount;//$_REQUEST['a3'] * 100;
$schedule->currency = 'EUR';//$_REQUEST['cc']
$schedule->startDate = date('mdY'); //, strtotime("last day of next month")
$schedule->paymentSchedule = PaymentSchedule::DYNAMIC; //or PaymentSchedule::FIRST_DAY_OF_THE_MONTH
$schedule->frequency = ScheduleFrequency::WEEKLY; //'Monthly', 'Bi-Monthly', 'Quarterly', 'Semi-Annually'
$schedule->numberOfPayments = 4;
$schedule->description = 'Test';
$schedule->poNumber = $orderId;
$schedule->reprocessingCount = 1;
$schedule->emailReceipt = 'Never';
$schedule->status = 'Active';
$response = $schedule->create();
return $response;
}
function getIdentifier($id)
{
$identifierBase = '%s-%s' . substr(str_shuffle('abcdefghijklmnopqrstuvwxyz'), 0, 10);
return sprintf($identifierBase, date('Ymd'), $id);
}