我的问题与简单明了:。 看来他从未回答过,我无法在这个地点找到这个问题,因此,我向这个社区提出这个问题。
无论出于何种原因,GphotoEntry公司都在做生意,但一家照相公司则无回报。 我需要使用光电离层的SapdiaSource(MediaSource)方法;它不能用于GphotoEntry。
我的守则(它必须作一次尝试性副渔获物发言,但我已在这里这样做)。 阁下注意到,我已经对我的工作提出了意见:
URL baseSearchUrl = new URL("https://picasaweb.google.com/data/feed/api/all");
Query myQuery = new Query(baseSearchUrl);
myQuery.setStringCustomParameter("kind", "photo");
myQuery.setMaxResults(10);
myQuery.setFullTextQuery("puppy");
AlbumFeed searchResultsFeed = myService.query(myQuery, AlbumFeed.class);
//for (GphotoEntry photo : searchResultsFeed.getEntries()) {
for (PhotoEntry photo : searchResultsFeed.getPhotoEntries()) {
System.out.println(photo.getTitle().getPlainText());
}
感谢您的帮助。