如何检测 flickr 照片何时变得不可用?
当嵌入/博客 flickr 图像被“照片不再可用”图像替换时,如何以编程方式判断?
如果可能的话,使用 Ruby。
How can I tell programatically when an embedded/blogged flickr image is replaced with a "photo no longer available" image?
With Ruby if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Flickr
flickr.photos.getPerms
API 方法以及从您拥有的任何 URL 中提取的照片 ID。http://www.flickr.com/services/api/flickr.photos .getPerms.html
这会告诉您照片是否丢失或已更改其权限以防止公开查看。
各种 Ruby 包装器可用于 Flickr API。
You could use the Flickr
flickr.photos.getPerms
API method with the photo ID extracted from any URLs you have.http://www.flickr.com/services/api/flickr.photos.getPerms.html
This would tell you if the photo is missing or has had it's permissions changed to prevent public viewing.
Various Ruby wrappers are available for the Flickr API.