2016-08-05 47 views
0

我爲Authorize.net CIM使用PHP SDK,並且突然停止工作。 它在創建客戶配置文件時返回空白響應。我試圖更新證書文件,但沒有任何工作。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

這是非常緊急的,我正在尋找可能的情況。 –

回答