如何下载美味的所有标签
如何从delicious下载所有标签,如以下所示的所有标签: http://delicious.com/tag
how to download all the tags from delicious, like all the tags shown in:
http://delicious.com/tag
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不可能获取所有标签,您可以获取您的用户名的所有标签(用您的用户名和密码替换占位符):
这会返回一些 XML(对我来说)看起来像这样:
或者您可以获取特定 URL 的推荐或建议标签列表:
这将返回带有两种不同类型标签的 XML,推荐的标签加上所有用户流行的标签:
有一篇 webmonkey 文章涵盖了 使用 PHP 的 Delicious API。
It's not possible to get all tags, you can get all tags for your username (replace the placeholders with your username and password):
This returns some XML which (for me) looks something like this:
Or you can get a list of recommended or suggested tags for a particular URL:
This returns XML with two different types of tag, your tags which are recommended plus tags from all users which are popular:
There's a webmonkey article which covers using the Delicious API from PHP.
如果您指的是自己的标签,那么最简单的解决方案是使用导出功能它的网站。我想你可以通过
curl
、wget
或类似的东西自动执行此操作(包括身份验证)。If you mean your own tags, then the easiest solution is to use the Export feature on its web site. I guess you can automate this (including authentication) via
curl
,wget
or something similar.