Microsoft Academic API,知识图搜索-ReferenceID始终为空 [英] Microsoft Academic API, Knowledge graph search -- ReferenceIDs always empty

查看:92
本文介绍了Microsoft Academic API,知识图搜索-ReferenceID始终为空的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用图形搜索Microsoft Academic API的方法来检索论文的引用ID和参考ID.但是,在检索引证ID有效的同时,参考ID字段始终为空,即使对于应该链接参考的论文也是如此.例如,通过API检索此出版物:

I'm using the graph search method of the Microsoft Academic API to retrieve citation IDs and reference IDs for a paper. However, while retrieving citation IDs works, the reference IDs field is always empty, even for papers which should have linked references. For example, retrieving this publication through the API:

POST https://westus.api.cognitive.microsoft.com/academic/v1.0/graph/search?mode=json
Content-Type: application/json
Host: westus.api.cognitive.microsoft.com
Ocp-Apim-Subscription-Key: my-api-key

{  
    "path": "/paper",
    "paper": {  
        "select": [  
            "OriginalTitle",
            "CitationIDs",
            "ReferenceIDs"
        ],
        "type": "Paper",
        "id": [2059999322]
    }
}

产生此响应(为了清晰起见,我缩短了CitationIDs列表):

yields this response (I shortened the CitationIDs list for the sake of legibility):

{
    "Results": [
        [
            {
                "CellID": 2059999322, 
                "CitationIDs": "[630584464,2053566310,2239657960,...]",  
                "OriginalTitle": "Biodistribution of colloidal gold nanoparticles after intravenous administration: Effect of particle size", 
                "ReferenceIDs": ""
            }
        ]
    ]
}

我注意到的一件事是,在此处 (在页面底部)与此处(某些属性已重命名,例如NormalizedPaperTitle-> NormalizedTitle),所以我认为该字段可能已重命名为其他名称.

One thing I've noticed is that the graph schema provided here (at the bottom of the page) doesn't match the schema shown here (some of the attributes were renamed, e.g. NormalizedPaperTitle -> NormalizedTitle), so I thought the field was perhaps renamed to something else.

通过API获取参考ID的正确查询是什么?

What is the correct query to get reference IDs through the API?

推荐答案

应为ReferencesIDs,而不是ReferenceIDs

这篇关于Microsoft Academic API,知识图搜索-ReferenceID始终为空的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆