Google api Freebase为主题描述的MQL查询返回空结果

Google api Freebase为主题描述的MQL查询返回空结果,google-api,freebase,Google Api,Freebase,我尝试使用google API freebase。 我使用以下查询搜索电影描述: [{ "id": "/m/027pfg", "name": null, "/common/topic/description": [] }] 这导致: { "result": [{ "id": "/m/027pfg", "name": "Big Fish", "/common/topic/description": [] }] } 网址: ht

我尝试使用google API freebase。 我使用以下查询搜索电影描述:

[{ 
  "id": "/m/027pfg", 
  "name": null, 
  "/common/topic/description": [] 
}] 
这导致:

{ 
  "result": [{ 
    "id": "/m/027pfg", 
    "name": "Big Fish", 
    "/common/topic/description": [] 
  }] 
} 
网址:

http://www.freebase.com/query?autorun=1&q=%5B%7B%22id%22:%22/m/027pfg%22,%22名称%22:空,%22/公用/主题/说明

但在页面本身中:“ 我确实看到了这部电影的描述。 这种情况经常发生,我无法得到我需要的信息

不返回实体描述。为了获得描述,您需要使用或

搜索API:

https://www.googleapis.com/freebase/v1/search?query=/m/027pfg&output=(description)
主题API:

https://www.googleapis.com/freebase/v1/topic/m/027pfg?filter=/common/topic

非常感谢。你知道我怎样才能连续地在他们的Api中获得关于所有电影的信息吗?Freebase现在有超过200000部电影的信息。数据转储可能是获取所有数据的最佳方式。我下载了tsv文件。你能告诉我什么是处理数据和解析数据的最佳方法吗?你能把它作为一个单独的问题发布吗。