2016-10-22 3 views
1

Cloudary에 요청하면 내 갤러리가 생성됩니다.하나의 요청으로 cloudifer 태그를 사용하여 리소스를받는 방법

$api = new \App\cloudinaryGallery; 
$api->resources(); 

Response {#176 ▼ 
    +"rate_limit_reset_at": 1477141200 
    +"rate_limit_allowed": 500 
    +"rate_limit_remaining": 499 
    flag::STD_PROP_LIST: false 
    flag::ARRAY_AS_PROPS: false 
    iteratorClass: "ArrayIterator" 
    storage: array:2 [▼ 
    "resources" => array:10 [▼ 
     0 => array:11 [▼ 
     "public_id" => "tiltkomp/gallery/kreoart" 
     "format" => "jpg" 
     "version" => 1477075563 
     "resource_type" => "image" 
     "type" => "upload" 
     "created_at" => "2016-10-21T18:46:03Z" 
     "bytes" => 1766084 
     "width" => 1920 
     "height" => 2607 
     "url" => "http://res.cloudinary.com/djxgexgng/image/upload/***************/tiltkomp/gallery/kreoart.jpg" 
     "secure_url" => "https://res.cloudinary.com/djxgexgng/image/upload/***************/tiltkomp/gallery/kreoart.jpg" 
     ] 
     1 => array:11 [▶] 
     2 => array:11 [▶] 
     3 => array:11 [▶] 
     4 => array:11 [▶] 
     5 => array:11 [▶] 
     6 => array:11 [▶] 
     7 => array:11 [▶] 
     8 => array:11 [▶] 
     9 => array:11 [▶] 
    ] 
    ] 
} 

요청 테이블에 태그에 대한 정보가 없습니다.

Response {#178 ▼ 
    +"rate_limit_reset_at": 1477141200 
    +"rate_limit_allowed": 500 
    +"rate_limit_remaining": 497 
    flag::STD_PROP_LIST: false 
    flag::ARRAY_AS_PROPS: false 
    iteratorClass: "ArrayIterator" 
    storage: array:14 [▼ 
    "public_id" => "tiltkomp/gallery/bodnar" 
    "format" => "jpg" 
    "version" => 1477075543 
    "resource_type" => "image" 
    "type" => "upload" 
    "created_at" => "2016-10-21T18:45:43Z" 
    "bytes" => 976947 
    "width" => 1920 
    "height" => 1489 
    "url" => "http://res.cloudinary.com/djxgexgng/image/upload/***************/tiltkomp/gallery/bodnar.jpg" 
    "secure_url" => "https://res.cloudinary.com/djxgexgng/image/upload/***************/tiltkomp/gallery/bodnar.jpg" 
    "tags" => array:2 [▼ 
     0 => "all" 
     1 => "shop" 
    ] 
    "derived" => array:4 [▶] 
    ] 
} 

이 어떻게보다 효과적으로 할 수있는 : 태그 정보를 수신하려면 나는 각 사진

foreach ($pictures['resources'] as $pic) { 
    $path_part = pathinfo($pic['url']); 
    $tags = $api->resource($api->path . $path_part['filename']);  
    $picturesName[basename($pic['url'])] = $tags; 
} 

및 수신을위한 루프에서 요청을 보낼 수 있나요? 한 번의 요청으로 사진과 태그에 대한 정보를받는 방법입니까?

답변

1

대량 리스팅 방법의 응답의 일환으로 태그를 포함합니다 다음 :

$api->resources(array("tags" => TRUE));