如何在 Python 中使用 Google api 检索 picasa 照片
我正在尝试使用 gdata Google API 从 Picasa 相册中检索照片(.jpg 文件)。然而,我没有找到任何方法可以做到这一点,即使可以使用 InsertPhoto 和 InsertPhotoSimple 等方法上传照片。
我想我一定错过了一些东西:-(。一个简单的例子会有所帮助。
I am trying to retrieve a photo (the .jpg file) from a Picasa album using the gdata Google API. However I did not find any method which does it, even though it is possible to upload a photo using methods like InsertPhoto and InsertPhotoSimple.
I guess I must be missing something :-(. A simple example would help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
客户端 API 仅提供获取照片信息的方法:http:// code.google.com/apis/picasaweb/docs/1.0/developers_guide_python.html#Photos
要检索图像,请使用 HTTP GET 以及之前获取的信息。请阅读文档。
为此,您可以使用 Python 库:
Client API provides methods only for obtaining information on photos: http://code.google.com/apis/picasaweb/docs/1.0/developers_guide_python.html#Photos
To retrieve an image, use an HTTP GET with information previously obtained. Read the documentation.
For this purpose you may use a Python library: