1

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

4

1 回答 1

0

您可能想参考Delicious 的 API 页面。有关于获取标签的特定部分

不知道您使用的是什么语言(我在您提供的链接中没有看到任何示例;诚然我没有深入挖掘),我正在展示一些使用urllib.FancyURLopener的 Python :

import urllib
u = urllib.FancyURLopener({})
f = u.open("https://api.del.icio.us/v1/tags/get")
tags = f.readlines()
for tag_line in tags:
    print tag_line

关于此代码的注释:

  1. urllib 文档页面包含有关将模块与 https 一起使用的警告:

    警告 - 打开 HTTPS URL 时,它不会尝试验证服务器证书。使用风险自负!

  2. 如上所示,系统将提示您输入 Delicious 用户名和密码。要解决此问题,您需要覆盖prompt_user_password方法。
  3. 您可能已经猜到需要身份验证,这只会获取您提供其凭据的用户的标签。我没有看到如何获取所有 Delicious 的标签。

于 2011-11-09T19:48:58.560 回答