Phil Sturgeon Codeigniter Rest客户结果

时间:2014-06-22 21:09:45

标签: php codeigniter rest curl

因此,我尝试使用Phil Sturgeon's rest codeigniter clientLob's Printing API进行交互。但是我在控制器中设置的所有东西都是空白的结果。我尝试过使用具有相同空白结果的Twitters API。

如果var_dump($result);其中$result是api调用,例如:$result = $this->rest->get('addresses');我得到的是:bool(false)同时使用API​​&#39}。我的控制器设置如下:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Mailing extends CI_Controller {

   public function __construct()
   {
       parent::__construct();

       $this->load->library('rest');

       $config = array(
           'server'          => 'https://api.lob.com/v1/',
           'api_key'         => 'my_api_key',
           'http_auth'       => 'basic',
       );

       $this->rest->initialize($config);
    }

    function show_addresses()
    {
      $result = $this->rest->get('addresses');
    }
}

我自动加载Curl,因为这是图书馆所必需的。

因为这发生在多个api上。我确定这是我的设置问题,但它会是什么?

0 个答案:

没有答案