在Picasa中按标签搜索照片不起作用

时间:2015-02-14 08:55:44

标签: python python-2.7 picasa google-photos

我正在尝试获取由特定关键字标记的照片列表,但API似乎没有按预期工作

  

https://picasaweb.google.com/data/feed/api/user/myid?kind=photo&tag=mytag

返回零元素,而我可以确认有许多带有“mytag”的照片。因为这些是由Google Plus UI返回的

  

https://plus.google.com/u/0/photos/search/mytag?mode=my

同样,即使是python API也不会返回任何结果。

photos = gd_client.GetTaggedPhotos('mytag', user='myid)
count=0;

for photo in photos.entry:
    count +=1
    size += int(photo.size.text)
print "Total  photos ",count

即使Feed API无效

photos = gd_client.GetFeed(
    '/data/feed/api/user/%s/?kind=photo&tag=%s' %  (
        'myid','mytag'))
count=0
print "Found", len(photos.entry), " photos"

0 个答案:

没有答案