如何检索美味相关标签
我在此处找到了这个示例,它使用了美味的相关标签并创建了一个图表。但我不知道他们是如何实现的。我不知道如何从delicious API获取相关标签的列表,因为在文档中根本没有提到它,但是在delicious 网站 当您搜索标签时,它会在右侧显示相关标签。
有人知道如何使用API获取相关标签吗?
谢谢
I have found this example here which uses delicious related tags and create a graph. But I don't know how they implemented it. I don't know how to get a list of related tags from delicious API, because in the documentation it is not mentioned at all, but in delicious website when you search for a tag it shows related tags in the right hand.
Does anybody know how to get related tags using API?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要参考Delicious 的 API 页面。有有关获取标签的特定部分。
不知道你正在使用什么语言(我没有在你提供的链接中看到任何示例;诚然,我没有深入研究),我将介绍一些使用 urllib.FancyURLopener:
有关此代码的注释:
<块引用>
警告 - 打开 HTTPS URL 时,它不会尝试验证服务器证书。使用风险自负!
You might want to refer to Delicious' API page. There is specific section on getting tags.
Not knowing what language you're using (I didn't see any examples in the link you provided; admittedly I didn't dig too deep), I'm presenting some Python which uses the urllib.FancyURLopener:
Notes about this code: