如何使用Java API从Picasa获取具有特定标题的照片

时间:2011-01-26 21:48:42

标签: java api photo picasa

有人知道如何通过其标题从Picasa获取照片而不知道它所属的专辑吗?我已经通过身份验证了。

1 个答案:

答案 0 :(得分:0)

我想你可以这样做: -

URL baseSearchUrl = new URL("yourPicasaURL");

Query myQuery = new Query(baseSearchUrl);
myQuery.setStringCustomParameter("kind", "photo");
myQuery.setMaxResults(10);
myQuery.setFullTextQuery("hello"); // search photo that has the word "hello"

AlbumFeed searchResultsFeed = myService.query(myQuery, AlbumFeed.class);

for (PhotoEntry photo : searchResultsFeed.getPhotoEntries()) {
    System.out.println(photo.getTitle().getPlainText());
}