0
Authorize.net CIM 용 PHP SDK를 사용하고 있으며 갑자기 작동을 멈 춥니 다. 고객 프로필을 만드는 동안 빈 응답을 반환합니다. 난뿐만 아니라 아무것도 작동 cert 파일을 업데이 트 했어요. Authorize.net CIM 공백 응답 반환
이
코드입니다 :$authorizeNetCim = new AuthorizeNetCIM($clientRow->authorizenet_login_id, $clientRow->authorizenet_transaction_key);
$customerProfile = new AuthorizeNetCustomer;
$customerAddress = new AuthorizeNetAddress;
if (!$personRow->hasAuthorizenetProfileId()) {
$customerProfile->merchantCustomerId = $personRow->id;
$customerProfile->description = $personRow->getName();
$response = $authorizeNetCim->createCustomerProfile($customerProfile);
그리고 여기에 대한 응답 :
AuthorizeNetCIM_Response Object
(
[xml] =>
[response] =>
)
어떤 도움에 감사드립니다. 미리 감사드립니다.
매우 긴급한 상황입니다. 가능한 경우를 찾고 있습니다. –