我使用 Picasa RSS 提要没问题,但我无法获取我上传的原始大尺寸图片。通过 Picasa 上传时,我特意选择上传“原始尺寸”(相当大)。提要 URL 仅指向较小的图像。如何从 picasa 获取原始大图?
我可以通过检查 Picasa 网站上的图像来破解 URL,所以这是我想要的照片的一个示例:https : //lh3.googleusercontent.com/-yam9QV2NG40/ULKIMTKvQzI/AAAAAAAAAA4/ownr930MvGg/s2048/Blasket% 2520驴.jpg
我知道您可以使用 URL 中的 s(上面的粗体位)更改上面的 URL。
所以这是我获取和使用提要的coldfusion代码:
<cffeed name="picassa_RSS"source="https://picasaweb.google.com/data/feed/base/user/104080781603408027307/albumid/5817402728494564577?alt=rss&kind=photo&hl=en_US">
<cfoutput>
<!--- Loop through picasa RSS feed and output thumbnails --->
<cfloop array="#picassa_RSS.item#" index="i">
<img alt="img" src="#i.group.thumbnail[2].url#" class="picture">
</cfloop>
</cfoutput>
有任何想法吗?
谢谢你。