Checkin / chekout文件时Sharepoint`不支持的段类型`

时间:2018-02-21 09:23:28

标签: rest sharepoint microsoft-graph onedrive

我想使用OneDrive REST API 上的结帐/签入功能: https://docs.microsoft.com/en-us/onedrive/developer/rest-api/api/driveitem_checkout

我面临两个问题:

第一期 - 文件信息API将publication属性返回为published,即使文件已手动签出

请求:

https://graph.microsoft.com/v1.0/sites/SITE_ID/drive/items/FILE_ID?select=name,id,publication

响应:

{
    "id": "01KJOOXJHF77OPSR7HWVCKSTHBQJQZEBJI",
    "name": "diamond.mmap",
    "publication": {
        "level": "published",
        "versionId": "2.0"
    }
}

enter image description here

第二期 - 结帐/签到端点的奇怪响应:

我使用此处定义的端点 https://docs.microsoft.com/en-us/onedrive/developer/rest-api/api/driveitem_checkout

e.g。 https://graph.microsoft.com/v1.0/sites/SITE_ID/drive/items/FILE_ID/checkout

回复:

{
    "error": {
        "code": "BadRequest",
        "message": "Unsupported segment type. ODataQuery: sites/fe688d8ed4a2/drive/items/01KJOQZEBJI/checkout",
        "innerError": {
            "request-id": "a7d18555-3e74-4aea-ad92-539481f6c33b",
            "date": "2018-02-21T09:17:00"
        }
    }
}

有没有想过我错过了什么?

1 个答案:

答案 0 :(得分:1)

/checkin/checkout个终端目前位于beta

尝试将URI的根目录从https://graph.microsoft.com/v1.0/更改为https://graph.microsoft.com/beta/

https://graph.microsoft.com/v1.0/sites/{siteId}/drive/items/{itemId}/checkout