我正在使用PHP SDK for 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] =>
)
感谢任何帮助。提前谢谢。
答案 0 :(得分:1)
无论如何,我已经找到了问题。必须重新启动apache才能使其正常工作。谢谢你:https://stackoverflow.com/a/26081579/6648864