doudeng8691 2018-01-25 03:07
浏览 73
已采纳

使用REST API为Azure CosmosDB获取文档

I'm trying CosmosDB Emulator using REST API from PHP. For that I'm using AzureDocumentDB-PHP.

This wrapper library is referring to the MSDN documentation for the REST API. I'm seeing a difference between MSDN documentation and docs.microsoft.com

For example, to retrieve a single document MSDN says use the following syntax:

https://{databaseaccount}.documents.azure.com/dbs/{_rid-db}/colls/{_rid-col}/docs/{_rid-doc}

Whereas the docs.microsoft.com says use the below syntax:

https://{databaseaccount}.documents.azure.com/dbs/{db-id}/colls/{coll-id}/docs/{doc-id}

Note the difference, MSDN uses _rid (system generated id), where as docs.microsoft.com uses just the id (user generated id).

The mentioned PHP library which is using MSDN syntax works fine with the _rid (system generated id). If I try to use the user generated id, I get the following error (for trying to get a db):

{"code":"Unauthorized",
 "message":"The input authorization token can't serve the request. 
            Please check that the expected payload is built as per the 
            protocol, and check the key being used. Server used the
            following payload to sign: 
            'get
dbs
dbs/db_test
thu, 25 jan 2018 10:28:30 gmt

'

              ActivityId: a43be1a0-c35b-4438-bb83-522204d3f589, 
             Microsoft.Azure.Documents.Common/1.19.102.5"}' (length=388)
  • 写回答

2条回答 默认 最新

  • du94414 2018-01-25 18:19
    关注

    Actually,The MSDN doc and doc.microsoft.com are both cosmosdb REST APIs.

    However , the MSDN doc is stopped updating in July 14, 2015.Obviously, the Azure Cosmos DB REST API is constantly being updated and optimized, as shown in the x-ms-version parameter which is required in the request header.

    The AzureDocumentDB-PHP uses the old version of Azure Cosmos DB REST API which supports _rid of resources , so you can not use it with id of resources. The x-ms-version parameters are different.

    Hope it helps you.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部