Google views - 获取某个地区的照片详细信息
Google views - get photos details for a region
寻找一种方法来模仿 Flickr API 逻辑以使用 Google 视图。
在 Flickr 上,我可以调用 flickr.photos.search
方法并获取特定位置的所有照片,如下所示:
回复:
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<photos page="1" pages="7673" perpage="100" total="767266">
<photo id="17856165012" owner="91887621@N04" secret="6d2acf3b87" server="7690" farm="8" title="Amsterdam Canal" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17830118816" owner="131827681@N05" secret="ee8b55fc5e" server="7756" farm="8" title="IMG_2209" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17668921970" owner="131827681@N05" secret="bd0061e638" server="8825" farm="9" title="IMG_2210" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17853550052" owner="131827681@N05" secret="c834e9a7eb" server="7738" farm="8" title="IMG_2212" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17856935911" owner="131827681@N05" secret="39be86bb4b" server="7723" farm="8" title="IMG_2213" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17233920844" owner="131827681@N05" secret="8be2333be3" server="7658" farm="8" title="IMG_2214" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17853542232" owner="131827681@N05" secret="8f19ee65c2" server="7747" farm="8" title="IMG_2215" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17856926911" owner="131827681@N05" secret="bc0fb6dbc1" server="7667"....
然后我为每个照片 ID 调用 flickr.photos.getInfo
以获取照片信息
响应:
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<photo id="17853542232" secret="8f19ee65c2" server="7747" farm="8" dateuploaded="1432037570" isfavorite="0" license="0" safety_level="0" rotation="90" originalsecret="7848968317" originalformat="jpg" views="2" media="photo">
<owner nsid="131827681@N05" username="trashhunters" realname="Trash Hunters" location="" iconserver="7748" iconfarm="8" path_alias="trashhunters" />
<title>IMG_2215</title>
<description />
<visibility ispublic="1" isfriend="0" isfamily="0" />
<dates posted="1432037570" taken="2015-05-17 13:47:32" takengranularity="0" takenunknown="0" lastupdate="1432040217" />
<editability cancomment="0" canaddmeta="0" />
<publiceditability cancomment="1" canaddmeta="0" />
<usage candownload="1" canblog="0" canprint="0" canshare="1" />
<comments>0</comments>
<notes />
<people haspeople="0" />
<tags>
<tag id="131822341-17853542232-563433" author="131827681@N05" authorname="trashhunters" raw="blikje" machine_tag="0">blikje</tag>
<tag id="131822341-17853542232-81138" author="131827681@N05" authorname="trashhunters" raw="fanta" machine_tag="0">fanta</tag>
</tags>
<location latitude="52.367408" longitude="4.862769" accuracy="16" context="0" place_id="xQ4tawtWUL1NrOY" woeid="727232">
<locality place_id="xQ4tawtWUL1NrOY" woeid="727232">Amsterdam</locality>
<county place_id="nmbnjNtQUL_iOTHdPg" woeid="12592040">Amsterdam</county>
<region place_id="F86XYCBTUb6DPzhs" woeid="2346379">North Holland</region>
<country place_id="Exbw8apTUb6236fOVA" woeid="23424909">Netherlands</country>
</location>
<geoperms ispublic="1" iscontact="0" isfriend="0" isfamily="0" />
<urls>
<url type="photopage">https://www.flickr.com/photos/trashhunters/17853542232/</url>
</urls>
</photo>
</rsp>
我对经度、纬度、拍摄时间和用户 信息。我查看了 Google places API 但找不到方法。
更新:
澄清一下,我在 Google API 上找到了 place details 请求,但照片结果不包含位置或用户数据:
..."photos" : [
{
"height" : 2322,
"html_attributions" : [
"\u003ca href=\"//lh5.googleusercontent.com/-QO7PKijayYw/AAAAAAAAAAI/AAAAAAAAAZc/fTtRm3YH3cA/s100-p-k/photo.jpg\"\u003eWilliam Stewart\u003c/a\u003e"
],
"raw_reference" : {
"fife_url" : "https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/k/"
},
"width" : 4128
},...
任何建议将不胜感激:)
我有好消息和坏消息要告诉你。好消息是这是可能的,坏消息是有大量的警告并且不能保证您能够获得每张照片所需的信息。
第一步:用户信息
当您从 API 地点请求地点信息时,您会收到一组照片。每张照片都有一个 url
、一个 width
、一个 height
和一个 html_attributions
字符串。如果我的理解是正确的,如果企业所有者自己上传照片,最后一个字符串将为空,但如果是第三方内容,它将包含一个 link,您必须将其包含在带有用户属性的页面中.要使用您问题中 Google HQ 的第一张照片,我们得到以下信息
{
url: 'https://lh5.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s0/20140109_152438.jpg',
width: 2322,
height: 4128,
html_attributions: '<a href="https://plus.google.com/107252953636064841537">William Stewart</a>'
}
在大多数情况下(如果不是全部),这将是 link 到 Google Plus 用户帐户,我们可以从中提取 userId
。在这种情况下 107252953636064841537
第 2 步:查找照片
现在,合乎逻辑的下一步似乎是转到 Google+ API,但事实证明他们仍然没有包含访问 Google+ 照片的方法.然而,令人惊讶的是,Picasa 网络 API 仍在运行并且 运行 并且似乎仍然 return 最新数据。所以接下来我们可以使用上面找到的 userId
通过以下 url 请求该用户的所有相册(Google 已经使用相同的 ids,或者只是支持 Google+用户 ID)。
https://picasaweb.google.com/data/feed/api/user/107252953636064841537
用户拥有的每个相册都有一个 <entry>
,其中包含以下内容
<feed>
[...]
<entry>
[...]
<link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="https://picasaweb.google.com/data/feed/api/user/107252953636064841537/albumid/6061059278861279377" />
[...]
</entry>
</feed>
您需要通过在 href
字段中请求 url 来请求每个相册供稿以获取照片列表。这将 return 另一个 xml 文档,其中包含每张照片的以下信息:
<entry>
<id>https://picasaweb.google.com/data/entry/api/user/107252953636064841537/albumid/6061059278861279377/photoid/6061059282579110242</id>
<published>2014-09-20T08:05:33.000Z</published>
<updated>2014-10-08T20:11:49.889Z</updated>
<category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/photos/2007#photo" />
<title type="text">20140109_152438.jpg</title>
<summary type="text" />
<content type="image/jpeg" src="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/20140109_152438.jpg" />
<link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="https://picasaweb.google.com/data/feed/api/user/107252953636064841537/albumid/6061059278861279377/photoid/6061059282579110242" />
<link rel="alternate" type="text/html" href="https://picasaweb.google.com/107252953636064841537/September20201402#6061059282579110242" />
<link rel="http://schemas.google.com/photos/2007#canonical" type="text/html" href="https://picasaweb.google.com/lh/photo/CpdWkfaimetJbSbFK2cojdMTjNZETYmyPJy0liipFm0" />
<link rel="self" type="application/atom+xml" href="https://picasaweb.google.com/data/entry/api/user/107252953636064841537/albumid/6061059278861279377/photoid/6061059282579110242" />
<link rel="http://schemas.google.com/photos/2007#report" type="text/html" href="https://picasaweb.google.com/lh/reportAbuse?uname=107252953636064841537&aid=6061059278861279377&iid=6061059282579110242" />
<gphoto:id>6061059282579110242</gphoto:id>
<gphoto:version>7</gphoto:version>
<gphoto:position>2.0</gphoto:position>
<gphoto:albumid>6061059278861279377</gphoto:albumid>
<gphoto:access>public</gphoto:access>
<gphoto:width>4128</gphoto:width>
<gphoto:height>2322</gphoto:height>
<gphoto:size>1756108</gphoto:size>
<gphoto:client />
<gphoto:checksum />
<gphoto:timestamp>1389241477000</gphoto:timestamp>
<gphoto:imageVersion>3202</gphoto:imageVersion>
<gphoto:commentingEnabled>true</gphoto:commentingEnabled>
<gphoto:commentCount>0</gphoto:commentCount>
<gphoto:streamId>cs_01_3c7bd15d390e38745feedfd0c8ec076f</gphoto:streamId>
<gphoto:license id="0" name="All Rights Reserved" url="">ALL_RIGHTS_RESERVED</gphoto:license>
<gphoto:shapes faces="done" />
<exif:tags>
<exif:fstop>2.2</exif:fstop>
<exif:make>SAMSUNG</exif:make>
<exif:model>GT-I9505</exif:model>
<exif:exposure>0.030303031</exif:exposure>
<exif:flash>false</exif:flash>
<exif:focallength>4.2</exif:focallength>
<exif:iso>80</exif:iso>
<exif:time>1389281077000</exif:time>
<exif:imageUniqueID>721da79fdf344aa70000000000000000</exif:imageUniqueID>
</exif:tags>
<media:group>
<media:content url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/20140109_152438.jpg" height="288" width="512" type="image/jpeg" medium="image" />
<media:credit>William Stewart</media:credit>
<media:description type="plain" />
<media:keywords />
<media:thumbnail url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s72/20140109_152438.jpg" height="41" width="72" />
<media:thumbnail url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s144/20140109_152438.jpg" height="81" width="144" />
<media:thumbnail url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s288/20140109_152438.jpg" height="162" width="288" />
<media:title type="plain">20140109_152438.jpg</media:title>
</media:group>
</entry>
请注意 <content>
标记的 src
属性如何等于第一个 API 调用的 url
,除了您应该忽略的子域(由于负载平衡而不同)。还要注意有关照片的所有可用信息如何在 xml 文档中公开,以及它如何包含已从照片本身剥离的所有 exif
数据。显然并不是所有的照片都包含 GPS 信息,上面的照片就是一个例子。但是,如果照片确实包含 GPS 信息,它将包含在该文档中的 exif 数据 and/or 中的 <georss:where>
标签中。
总结
要查找您要查找的信息,您需要循环浏览所有用户相册,然后搜索一张与您从 Google 收到的照片 url
相似的照片地点 API。最大的警告是它只适用于来自 Google+ 的照片,它需要 很多 的请求并且 Picasa 网络 API 很可能是在某个时候停产了,尽管那时至少它的一部分功能将被移植到 Google+ Photos API(尽管 Google 正计划再次移植到 make Google Photos a standalone service,所以在那种情况下它可能只是重命名)。无论哪种方式,所有考虑我都感到惊讶,因为 Google 地方 API 并不是为所有这些而设计的,所以从这个意义上说,我猜你很幸运。
寻找一种方法来模仿 Flickr API 逻辑以使用 Google 视图。
在 Flickr 上,我可以调用 flickr.photos.search
方法并获取特定位置的所有照片,如下所示:
回复:
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<photos page="1" pages="7673" perpage="100" total="767266">
<photo id="17856165012" owner="91887621@N04" secret="6d2acf3b87" server="7690" farm="8" title="Amsterdam Canal" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17830118816" owner="131827681@N05" secret="ee8b55fc5e" server="7756" farm="8" title="IMG_2209" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17668921970" owner="131827681@N05" secret="bd0061e638" server="8825" farm="9" title="IMG_2210" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17853550052" owner="131827681@N05" secret="c834e9a7eb" server="7738" farm="8" title="IMG_2212" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17856935911" owner="131827681@N05" secret="39be86bb4b" server="7723" farm="8" title="IMG_2213" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17233920844" owner="131827681@N05" secret="8be2333be3" server="7658" farm="8" title="IMG_2214" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17853542232" owner="131827681@N05" secret="8f19ee65c2" server="7747" farm="8" title="IMG_2215" ispublic="1" isfriend="0" isfamily="0" />
<photo id="17856926911" owner="131827681@N05" secret="bc0fb6dbc1" server="7667"....
然后我为每个照片 ID 调用 flickr.photos.getInfo
以获取照片信息
响应:
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<photo id="17853542232" secret="8f19ee65c2" server="7747" farm="8" dateuploaded="1432037570" isfavorite="0" license="0" safety_level="0" rotation="90" originalsecret="7848968317" originalformat="jpg" views="2" media="photo">
<owner nsid="131827681@N05" username="trashhunters" realname="Trash Hunters" location="" iconserver="7748" iconfarm="8" path_alias="trashhunters" />
<title>IMG_2215</title>
<description />
<visibility ispublic="1" isfriend="0" isfamily="0" />
<dates posted="1432037570" taken="2015-05-17 13:47:32" takengranularity="0" takenunknown="0" lastupdate="1432040217" />
<editability cancomment="0" canaddmeta="0" />
<publiceditability cancomment="1" canaddmeta="0" />
<usage candownload="1" canblog="0" canprint="0" canshare="1" />
<comments>0</comments>
<notes />
<people haspeople="0" />
<tags>
<tag id="131822341-17853542232-563433" author="131827681@N05" authorname="trashhunters" raw="blikje" machine_tag="0">blikje</tag>
<tag id="131822341-17853542232-81138" author="131827681@N05" authorname="trashhunters" raw="fanta" machine_tag="0">fanta</tag>
</tags>
<location latitude="52.367408" longitude="4.862769" accuracy="16" context="0" place_id="xQ4tawtWUL1NrOY" woeid="727232">
<locality place_id="xQ4tawtWUL1NrOY" woeid="727232">Amsterdam</locality>
<county place_id="nmbnjNtQUL_iOTHdPg" woeid="12592040">Amsterdam</county>
<region place_id="F86XYCBTUb6DPzhs" woeid="2346379">North Holland</region>
<country place_id="Exbw8apTUb6236fOVA" woeid="23424909">Netherlands</country>
</location>
<geoperms ispublic="1" iscontact="0" isfriend="0" isfamily="0" />
<urls>
<url type="photopage">https://www.flickr.com/photos/trashhunters/17853542232/</url>
</urls>
</photo>
</rsp>
我对经度、纬度、拍摄时间和用户 信息。我查看了 Google places API 但找不到方法。
更新: 澄清一下,我在 Google API 上找到了 place details 请求,但照片结果不包含位置或用户数据:
..."photos" : [
{
"height" : 2322,
"html_attributions" : [
"\u003ca href=\"//lh5.googleusercontent.com/-QO7PKijayYw/AAAAAAAAAAI/AAAAAAAAAZc/fTtRm3YH3cA/s100-p-k/photo.jpg\"\u003eWilliam Stewart\u003c/a\u003e"
],
"raw_reference" : {
"fife_url" : "https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/k/"
},
"width" : 4128
},...
任何建议将不胜感激:)
我有好消息和坏消息要告诉你。好消息是这是可能的,坏消息是有大量的警告并且不能保证您能够获得每张照片所需的信息。
第一步:用户信息
当您从 API 地点请求地点信息时,您会收到一组照片。每张照片都有一个 url
、一个 width
、一个 height
和一个 html_attributions
字符串。如果我的理解是正确的,如果企业所有者自己上传照片,最后一个字符串将为空,但如果是第三方内容,它将包含一个 link,您必须将其包含在带有用户属性的页面中.要使用您问题中 Google HQ 的第一张照片,我们得到以下信息
{
url: 'https://lh5.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s0/20140109_152438.jpg',
width: 2322,
height: 4128,
html_attributions: '<a href="https://plus.google.com/107252953636064841537">William Stewart</a>'
}
在大多数情况下(如果不是全部),这将是 link 到 Google Plus 用户帐户,我们可以从中提取 userId
。在这种情况下 107252953636064841537
第 2 步:查找照片
现在,合乎逻辑的下一步似乎是转到 Google+ API,但事实证明他们仍然没有包含访问 Google+ 照片的方法.然而,令人惊讶的是,Picasa 网络 API 仍在运行并且 运行 并且似乎仍然 return 最新数据。所以接下来我们可以使用上面找到的 userId
通过以下 url 请求该用户的所有相册(Google 已经使用相同的 ids,或者只是支持 Google+用户 ID)。
https://picasaweb.google.com/data/feed/api/user/107252953636064841537
用户拥有的每个相册都有一个 <entry>
,其中包含以下内容
<feed>
[...]
<entry>
[...]
<link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="https://picasaweb.google.com/data/feed/api/user/107252953636064841537/albumid/6061059278861279377" />
[...]
</entry>
</feed>
您需要通过在 href
字段中请求 url 来请求每个相册供稿以获取照片列表。这将 return 另一个 xml 文档,其中包含每张照片的以下信息:
<entry>
<id>https://picasaweb.google.com/data/entry/api/user/107252953636064841537/albumid/6061059278861279377/photoid/6061059282579110242</id>
<published>2014-09-20T08:05:33.000Z</published>
<updated>2014-10-08T20:11:49.889Z</updated>
<category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/photos/2007#photo" />
<title type="text">20140109_152438.jpg</title>
<summary type="text" />
<content type="image/jpeg" src="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/20140109_152438.jpg" />
<link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="https://picasaweb.google.com/data/feed/api/user/107252953636064841537/albumid/6061059278861279377/photoid/6061059282579110242" />
<link rel="alternate" type="text/html" href="https://picasaweb.google.com/107252953636064841537/September20201402#6061059282579110242" />
<link rel="http://schemas.google.com/photos/2007#canonical" type="text/html" href="https://picasaweb.google.com/lh/photo/CpdWkfaimetJbSbFK2cojdMTjNZETYmyPJy0liipFm0" />
<link rel="self" type="application/atom+xml" href="https://picasaweb.google.com/data/entry/api/user/107252953636064841537/albumid/6061059278861279377/photoid/6061059282579110242" />
<link rel="http://schemas.google.com/photos/2007#report" type="text/html" href="https://picasaweb.google.com/lh/reportAbuse?uname=107252953636064841537&aid=6061059278861279377&iid=6061059282579110242" />
<gphoto:id>6061059282579110242</gphoto:id>
<gphoto:version>7</gphoto:version>
<gphoto:position>2.0</gphoto:position>
<gphoto:albumid>6061059278861279377</gphoto:albumid>
<gphoto:access>public</gphoto:access>
<gphoto:width>4128</gphoto:width>
<gphoto:height>2322</gphoto:height>
<gphoto:size>1756108</gphoto:size>
<gphoto:client />
<gphoto:checksum />
<gphoto:timestamp>1389241477000</gphoto:timestamp>
<gphoto:imageVersion>3202</gphoto:imageVersion>
<gphoto:commentingEnabled>true</gphoto:commentingEnabled>
<gphoto:commentCount>0</gphoto:commentCount>
<gphoto:streamId>cs_01_3c7bd15d390e38745feedfd0c8ec076f</gphoto:streamId>
<gphoto:license id="0" name="All Rights Reserved" url="">ALL_RIGHTS_RESERVED</gphoto:license>
<gphoto:shapes faces="done" />
<exif:tags>
<exif:fstop>2.2</exif:fstop>
<exif:make>SAMSUNG</exif:make>
<exif:model>GT-I9505</exif:model>
<exif:exposure>0.030303031</exif:exposure>
<exif:flash>false</exif:flash>
<exif:focallength>4.2</exif:focallength>
<exif:iso>80</exif:iso>
<exif:time>1389281077000</exif:time>
<exif:imageUniqueID>721da79fdf344aa70000000000000000</exif:imageUniqueID>
</exif:tags>
<media:group>
<media:content url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/20140109_152438.jpg" height="288" width="512" type="image/jpeg" medium="image" />
<media:credit>William Stewart</media:credit>
<media:description type="plain" />
<media:keywords />
<media:thumbnail url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s72/20140109_152438.jpg" height="41" width="72" />
<media:thumbnail url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s144/20140109_152438.jpg" height="81" width="144" />
<media:thumbnail url="https://lh3.googleusercontent.com/-7mKc4261Edg/VB01Tfy2OWI/AAAAAAAADII/BHs-SIudu64/s288/20140109_152438.jpg" height="162" width="288" />
<media:title type="plain">20140109_152438.jpg</media:title>
</media:group>
</entry>
请注意 <content>
标记的 src
属性如何等于第一个 API 调用的 url
,除了您应该忽略的子域(由于负载平衡而不同)。还要注意有关照片的所有可用信息如何在 xml 文档中公开,以及它如何包含已从照片本身剥离的所有 exif
数据。显然并不是所有的照片都包含 GPS 信息,上面的照片就是一个例子。但是,如果照片确实包含 GPS 信息,它将包含在该文档中的 exif 数据 and/or 中的 <georss:where>
标签中。
总结
要查找您要查找的信息,您需要循环浏览所有用户相册,然后搜索一张与您从 Google 收到的照片 url
相似的照片地点 API。最大的警告是它只适用于来自 Google+ 的照片,它需要 很多 的请求并且 Picasa 网络 API 很可能是在某个时候停产了,尽管那时至少它的一部分功能将被移植到 Google+ Photos API(尽管 Google 正计划再次移植到 make Google Photos a standalone service,所以在那种情况下它可能只是重命名)。无论哪种方式,所有考虑我都感到惊讶,因为 Google 地方 API 并不是为所有这些而设计的,所以从这个意义上说,我猜你很幸运。