通读:

https://www.microsoft.com/cognitive-services/en-us/Academic-Knowledge-API/documentation/GraphSearchMethod

“路径”的含义有点模糊:
"path": "/paper/AuthorIDs/author"- 我在返回的结果中没有看到 authorIds 对象。

# post data query
{
  "path": "/paper/AuthorIDs/author",
  "paper": {
    "type": "Paper",
    "NormalizedTitle": "graph engine",
    "select": [
      "OriginalTitle"
    ]
  },
  "author": {
    "return": {
      "type": "Author",
      "Name": "bin shao"
    }
  }
}

#results
{
  "Results": [
    [
      {
        "CellID": 2160459668,
        "OriginalTitle": "Trinity: a distributed graph engine on a memory cloud"
      },
      {
        "CellID": 2093502026
      }
    ],
    [
      {
        "CellID": 2171539317,
        "OriginalTitle": "A distributed graph engine for web scale RDF data"
      },
      {
        "CellID": 2093502026
      }
    ],
    [
      {
        "CellID": 2411554868,
        "OriginalTitle": "A distributed graph engine for web scale RDF data"
      },
      {
        "CellID": 2093502026
      }
    ],
    [
      {
        "CellID": 73304046,
        "OriginalTitle": "The Trinity graph engine"
      },
      {
        "CellID": 2093502026
      }
    ]
  ]
}

哪个是查询文章的引文和共引以及对结果进行分页的正确路径(或要发布的数据)?

最佳答案

你会在 graph schema from Microsoft Academic Search 上找到 AuthorIDs :

api - 如何查询微软学术图的引文和共引?-LMLPHP

关于api - 如何查询微软学术图的引文和共引?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42168155/

10-11 09:33