0

我正在尝试使用Microsoft.Graph.CreateLink 操作为 OneDrive 项目创建共享链接:

POST https://graph.microsoft.com/v1.0/me/drive/items/01B642VZR4QM6MX36HGZELNLHCFGY26JJ6/Microsoft.Graph.createLink HTTP/1.1
Authorization: Bearer {access_token}
Content-Type: application/json

{
    "type":"edit"
}

我收到以下错误:

HTTP/1.1 400 Bad Request

{
    "error": {
        "code": "BadRequest",
        "message": "Version not specified.",
        "innerError": {
            "request-id": "3ca90464-3910-49e1-92f2-3a9daa822944",
            "date": "2016-02-17T15:56:16"
        }
    }
}

除了 API 端点之外,方法描述或元数据都不包含有关所需版本的任何信息。

4

1 回答 1

0

从 request-id:3ca90464-3910-49e1-92f2-3a9daa822944 对应的日志来看,服务收到的请求是“POST https://graph.microsoft.com/ ”。请求 URL 中缺少路径段会导致此预期错误。你能再检查一下请求吗?

于 2016-02-17T21:36:05.247 回答