我使用的是Picasa RSS提要,没问题,但是我无法获得上传的原始大尺寸图片。通过Picasa上传时,我特意选择上传“原始尺寸”(很大)。供稿网址仅指向较小的图像。如何从picasa获取原始的大图?

我可以通过检查Picasa网站上的图像来破解URL,所以这是我想要的照片示例:https://lh3.googleusercontent.com/-yam9QV2NG40/ULKIMTKvQzI/AAAAAAAAAA4/ownr930MvGg/ s2048 /Blasket%2520Donkeys.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>

有任何想法吗?

谢谢。

最佳答案

好吧,我自己找到了答案。请在此处查看imgmax参数:
https://developers.google.com/picasa-web/docs/2.0/reference#Parameters

您基本上是在Feed URL的末尾添加&imgmax = 1600 以获得最大的大小。

10-08 04:55