json 製品応答にアクセスしようとしており、ページに表示したいと考えています。URLにアクセスしたとき
http://api-product.skimlinks.com/query?q=merchant%3A(Amazon%20OR%20Newegg)&key=hide&format=json
次の構造で応答を返します。
-ProductsAPI{
status: 200,
products: [
- {
merchant: "Newegg",
id:"111",
......
......
codeigniter で実行するには、'Spark' を使用してrest_clientをインストールしました。適切にインストールされ、正常に動作します。
質問:
しかし、上記の URL のリクエストを取得するにはどうすればよいですか? コードは
function index() {
$this->load->spark('restclient/2.1.0');
$this->rest->initialize(array('server' => 'http://api-product.skimlinks.com/query?q=merchant%3A(Amazon%20OR%20Newegg)&key=hide&format=json'));
$this->rest->option(CURLOPT_SSL_VERIFYPEER, FALSE);
$data['products'] = $this->rest->get();
$this->load->view('index',$data);
}
$this->rest->get()
メソッドに何を入れたらいいかわからない?キーとフォーマット?