gpt4 book ai didi

java - 为什么 GphotoEntry 工作但 PhotoEntry 在 Picasa 网络相册 API 中返回空值?

转载 作者:行者123 更新时间:2023-11-29 09:23:34 24 4
gpt4 key购买 nike

我和 simplyi 有完全相同的问题 here .似乎他从未得到回答,我在这个网站上找不到这个问题,所以我想我应该把它放在这个社区之前。

无论出于何种原因,GphotoEntry 工作但 PhotoEntry 不返回任何内容。我需要在 PhotoEntry 上使用 getMediaSource() 方法;它不适用于 GphotoEntry。

这是我的代码(它必须在 try-catch 语句中,但我已在此处将其取出)。您会注意到我已经注释掉了适合我的行:

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());
}

感谢你的帮助

最佳答案

我遇到了同样的问题。

解决方法:将 photos-meta.jar 添加到类路径后,它应该可以工作。

Here is information source

关于java - 为什么 GphotoEntry 工作但 PhotoEntry 在 Picasa 网络相册 API 中返回空值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4575501/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com