Authorize.net CIM - 为什么API用户名无效或不存在

时间:2013-07-19 17:54:03

标签: php codeigniter authorize.net authorize.net-cim

我使用authorize.net CIM创建了一个应用程序。在测试模式下使用应用程序一切正常。当我从测试模式切换到实时模式并粘贴正确的用户ID和事务密钥时,它会说:API用户名无效或不存在。

没有意义。我100%认为api用户名和交易密钥是正确的。

我正在使用CIM codeigniter库。这是处理CIM的设置和初始化的代码......

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/*
By: Spicer Matthews <spicer@cloudmanic.com>
Company: Cloudmanic Labs, LLC
Website: http://www.cloudmanic.com

Based On Work From: 
- John Conde <johnny@johnconde.net>
- http://www.communitymx.com/content/article.cfm?page=4&cid=FDB14
*/

class AuthorizeCimLib
{
    private $_CI; 
    private $_loginname;
    private $_loginkey;
    private $_response;
    private $_resultCode;
    private $_responseCode;
    private $_responseText;
    private $_success;
    private $_error;
    private $_url;
    private $_parsedresponse;
    private $_xml;
    private $_call;
    private $_responsecall;
    private $_directresponse;
    private $_items = array();
    private $_params = array();
    private $_validationmode = 'liveMode';
    private $_errormsg = '';
    private $_loginhost = 'api.authorize.net';
    private $_testhost = 'apitest.authorize.net';
    private $_loginpath = '/xml/v1/request.api';

    //
    // Construct..... 
    //
    function __construct()
    {
        $this->_CI =& get_instance();
        $this->_set_url();
        $this->_set_default_params();

        // If the config is setup properly use that to initialize
        $this->_CI->config->load('authorizenet');

        if($this->_CI->config->item('authorizenetname') && 
                $this->_CI->config->item('authorizenetkey') &&
                $this->_CI->config->item('authorizenettestmode'))
        {
            $this->initialize($this->_CI->config->item('authorizenetname'), $this->_CI->config->item('authorizenetkey'), $this->_CI->config->item('authorizenettestmode'));
        }

        log_message('debug', "AuthorizeCimLib Class Initialized");
    }

    //
    // Call this function to setup the library variables. Such as API keys.
    //
    public function initialize($name, $key, $testmode = FALSE)
    {
        // Are we in test mode??
        if($testmode)
        {
            $this->_set_testmode();
        }

        // Setup login names and keys.
        $this->_loginname = $name;
        $this->_loginkey = $key;
    }

    //
    // Set validation mode.
    //
    public function set_validationmode($mode)
    {
        $types = array('none', 'testMode', 'liveMode', 'oldLiveMode');

        if(in_array($mode, $types))
        {
            $this->_validationmode = $mode;
            return 1;
        } 
        else
        {
            log_message('debug', "AuthorizeCimLib Not A Valid Test Mode");
            return 0;
        }
    }

    //
    // Get validation mode.
    //
    public function get_validationmode()
    {
        return $this->_validationmode;
    }

    //
    // Set Parameters to send to Authorize.net
    //
    public function set_data($field, $value)
    {
        $this->_params[$field] = $value;
    }

    //
    // C;ear Parameters data
    //
    public function clear_data()
    {
        $this->_params = array();
        $this->_set_default_params();
    }

1 个答案:

答案 0 :(得分:0)

我终于在拔掉头发后想出来了!

库类的__construct中的if语句逻辑存在一些错误。会发生什么情况,当它检查配置选项时,如果您的测试模式设置为FALSE,那么它将不会初始化...因为那时您将FALSE值传递给if语句(这发生在我文件的第49行附近)。你可以做些什么来解决它只是从if语句中删除“测试模式”检查。

这就是它的样子:

if($this->_CI->config->item('authorizenetname') && $this->_CI->config->item('authorizenetkey'))
{
    $this->initialize($this->_CI->config->item('authorizenetname'), $this->_CI->config->item('authorizenetkey'), $this->_CI->config->item('authorizenettestmode'));
}

我知道这个答案在游戏中已经很晚了,但希望它有所帮助。