如何从 Filckr 获取一组照片的标题描述和 URL
因此,我正在创建一个照片查看器来学习 Silverlight,并且我希望能够从 flickr 获取特定用户/集的所有照片。我发现我可以轻松获取 Atom feed 中的信息,但无法轻松获取描述,因为 Atom feed 结合了标题/描述等并将其输出为 html。有没有什么方法可以轻松获取 flickr 中特定用户/集的标题/描述/url?
So I have a photo viewer that I am creating to learn Silverlight and I want to be able to get all of the photos from flickr for a specific user/set. I see that I can easily get the information in an atom feed but I can't easily get the description as the atom feed combines the Title/description etc and outputs it as html. Is there any way to easily get the tite/description/url for a specific user/set in flickr?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以直接使用 Flickr API,而不是 ATOM。我见过很多人使用 WebClient 与 Silverlight 中的 Flickr API 进行交互。
http://www.flickr.com/services/api/
请注意,您需要如果您必须“签署”您的 Flickr API 调用,请使用 Silverlight 的 MD5 实现。
Instead of ATOM, you could directly use the Flickr API. I've seen a number of people use the WebClient to interact with the Flickr API in Silverlight.
http://www.flickr.com/services/api/
Note that you will need to use an MD5 implementation for Silverlight if you have to "sign" your Flickr API calls.