3

是否有一个易于设置的 Codeigniter REST 库,我可以使用它来使用 RESTful 服务?我尝试设置这个库。但无法设置Spark。尝试了以下步骤:

  1. 在 codeigniter 目录的根目录中添加一个名为 sparks 的目录
  2. 将自定义加载器类添加到 application/core/MY_Loader.php。

它给了我另一个错误Cannot find spark path at sparks/curl/1.2.1/。现在我被困住了。想知道为什么在 codeigniter 中设置 RESTful API 如此困难。

更新:当我尝试跑步时

$this->load->spark('restclient/2.1.0');
        // Load the library
        $this->load->library('rest');
        // Run some setup
        $this->rest->initialize(array('server' => 'http://api.twitter.com/'));
        // Pull in an array of tweets
        $tweets = $this->rest->get('1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=jenksuy&count=2');
        $tweetobjects = json_decode($tweets);
        foreach ($tweetobjects['results'] as $tweet) {
            log_message('info', $tweet['text']);
        }

我正进入(状态Error: Call to undefined method CI_Loader::spark()

4

2 回答 2

2

火花不是必需的,请参阅编辑。使用本教程开始,作者还编写了库

http://net.tutsplus.com/tutorials/php/working-with-restful-services-in-codeigniter-2/

下载这两个以使用本教程:

https://github.com/philsturgeon/codeigniter-restserver

https://github.com/philsturgeon/codeigniter-restclient

也在教程的最后——有很多评论和问题,教程作者已经回答了很多

编辑 - 哎呀忘了你必须改变一行。并且您将需要对 CI curl 库进行 DL。好的,所以在其余客户端中,从第 53 行开始的文件 Rest.php

/* Not using Sparks? You bloody well should be.
    | If you are going to be a stick in the mud then do it the old fashioned way

    $this->_ci->load->library('curl');
    */

    // Load the cURL spark which this is dependant on
    $this->_ci->load->spark('curl/1.2.1');

因此将其更改为以传统方式加载 curl 库并注释掉 spark 参考

        $this->_ci->load->library('curl');


    // Load the cURL spark which this is dependant on
    // $this->_ci->load->spark('curl/1.2.1');
于 2013-08-08T00:57:14.233 回答
0

您可以通过在应用程序根目录(而不是应用程序文件夹)上运行以下命令来安装 curl 1.2.1:

php tools/spark install -v1.2.1 curl

资源

于 2015-08-14T08:19:43.363 回答