Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Web アプリケーションにインポートするすべての写真を表示する必要があります。
まず、次のアルバムを取得します。
$albums = $flickr->photosets_getList($userId);
次に、任意のアルバムを選択すると、次の写真を取得します。
$photos = $flickr->photosets_getPhotos($albumId);
しかし、アルバムを持たない写真だけを取得するにはどうすればよいでしょうか?
なにか提案を?ありがとう。
私はこの方法で解決しました:
$photos = $flickr->photos_getNotInSet();
文書化されている:
flickr.photos.getNotInSet