Files
php-curl-class/examples/flickr_photo_search.php
Zach Borboa 1c47fc9d02 Clean up
2023-10-21 06:20:13 -07:00

29 lines
756 B
PHP

<?php
require __DIR__ . '/../vendor/autoload.php';
use Curl\Curl;
const FLICKR_API_KEY = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
$data = [
'method' => 'flickr.photos.search',
'api_key' => FLICKR_API_KEY,
'text' => 'happy',
'sort' => 'interestingness-desc',
'safe_search' => '3',
'format' => 'json',
'nojsoncallback' => '1',
];
$curl = new Curl();
$curl->get('https://api.flickr.com/services/rest/', $data);
foreach ($curl->response->photos->photo as $photo) {
$size = 's';
$ext = 'jpg';
$url = 'https://farm' . $photo->farm . '.staticflickr.com/' . $photo->server . '/' .
$photo->id . '_' . $photo->secret . '_' . $size . '.' . $ext;
echo '<img alt="" src="' . $url . '" height="75" width="75" />';
}