我已经获得了Microsoft here的Cognitive Services Labs的API密钥,但是当我尝试使用the API "Try me" page for the graphSearch
method中提供的示例时,大约20秒钟后出现500个服务器错误。其他API端点(interpret
,evaluate
)似乎运行良好。这是我的查询(也可以通过“尝试我”页面尝试):
export SERVER=api.labs.cognitive.microsoft.com
curl "https://${SERVER}/academic/v1.0/graph/search?mode=json" \
-H "Host: ${SERVER}" \
-H 'Content-Type: application/json' \
-H "Ocp-Apim-Subscription-Key: ${API_KEY}" \
--data '{"path":"/paper/AuthorIDs/author","paper":{"type":"Paper","NormalizedTitle":"graph engine","select":["OriginalTitle"]},"author":{"return":{"type":"Author","Name":"bin shao"}}}'
我已经通过Cognitive Services UserVoice门户写了一个询问,但到目前为止没有任何答案。该服务未在Azure Status page中列出。
我想知道我的查询或帐户注册是否错误,或者这是暂时的问题。应该很容易回答。