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);
Then when selected any album, I get the photos with:
$photos = $flickr->photosets_getPhotos($albumId);
但是如何只获取没有相册的照片呢?
有什么建议吗?谢谢。
我用这种方法解决了:
$photos = $flickr->photos_getNotInSet();
记录在:
flickr.photos.getNotInSet