在Graphsearch API上进行以下api调用:
POST https://westus.api.cognitive.microsoft.com/academic/v1.0/graph/search?mode=json HTTP/1.1
Content-Type: application/json
Host: westus.api.cognitive.microsoft.com
Ocp-Apim-Subscription-Key: ••••••••••••••••••••••••••••••••
{
"path": "/paper/AuthorIDs/author",
"paper": {
"type": "Paper",
"NormalizedTitle": "graph engine",
"select": [
"OriginalTitle"
]
},
"author": {
"return": {
"type": "Author",
"Name": "bin shao"
}
}
}返回内部服务器错误500:
Pragma: no-cache
apim-request-id: ab90bbda-b1e7-4f55-b939-770ef086579b
Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
x-content-type-options: nosniff
Cache-Control: no-cache
Date: Tue, 06 Jun 2017 16:31:17 GMT
X-Powered-By: ASP.NET
Content-Length: 108
Content-Type: application/json; charset=utf-8
Expires: -1
{
"Error": {
"Message": "Something went wrong, if the error continue please contact us",
"Code": "InternalError"
}
}我只是使用Open API测试控制台来测试API。
https://stackoverflow.com/questions/44395938
复制相似问题