Freebase MQL 查询打印文章?

发布于 2024-10-21 07:56:15 字数 383 浏览 4 评论 0原文

这是我的查询:

[{
  "type":   "/tv/tv_series_episode",
  "series": "The Simpsons",
  "guest_stars": [{
    "actor": {
      "/common/topic/article": [{
        "id":       null,
        "optional": true,
        "limit":    3
      }],
      "name": null
    }
  }]
}]

Freebase 返回文章的 ID,例如:id:“/m/0sw7x”,我将如何打印此 ID。我读过您必须使用“跨”服务,但我不太确定如何做到这一点......

here's my query:

[{
  "type":   "/tv/tv_series_episode",
  "series": "The Simpsons",
  "guest_stars": [{
    "actor": {
      "/common/topic/article": [{
        "id":       null,
        "optional": true,
        "limit":    3
      }],
      "name": null
    }
  }]
}]

Freebase is returning an id for the article such as: id: "/m/0sw7x", how would I print this ID. I've read that you have to use a "trans" service but I'm not exactly sure how to do this...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浪菊怪哟 2024-10-28 07:56:15

trans 服务实际上使用起来非常简单。您只需将该 ID 附加到 GET 请求的末尾,它就会发回如下文章内容:

http://api.freebase.com/api/trans/raw/m/0sw7x

我对类似问题给出了更详细的解释 此处

The trans service is actually pretty simple to use. You just append that ID to the end of a GET request and it sends back the article content like this:

http://api.freebase.com/api/trans/raw/m/0sw7x

I gave a more detailed explanation to a similar question here.

柠檬心 2024-10-28 07:56:15

或者,您可以直接使用 MQL 获取文章,如我对 narphorium 所指出的问题的回答中所述。

Or you can fetch the article directly with MQL as detailed in my answer to the question narphorium's pointed at.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文