2017-06-05 57 views
4

我在此鏈接的下載中使用此腳本。 https://gallery.technet.microsoft.com/scriptcenter/How-to-query-Azure-Cosmos-0a9aa517 但是由於某種原因,我得到了404響應。在PowerShell的Powershell查詢上獲得404 DB

我直接拷貝了數據庫的url。放入一個假的URL給我一個「無法解決」的錯誤,所以我知道該位置存在。

基於Azure的CosmosDB API文檔在這裏: https://docs.microsoft.com/en-us/rest/api/documentdb/databases 的$ databaseID是用戶設置的,只是必須是唯一的,所以我將它設置爲相同的數據庫名稱,並分配了到url 。

將它改爲不同的仍然給我同樣的404響應消息(如下)。

編輯:爲便於閱讀,刪除了原來的註釋介紹

PowerShell腳本:

# add necessary assembly 
# 
Add-Type -AssemblyName System.Web 

# generate authorization key 
Function Generate-MasterKeyAuthorizationSignature 
{ 
    [CmdletBinding()] 
    Param 
    (
     [Parameter(Mandatory=$true)][String]$verb, 
     [Parameter(Mandatory=$true)][String]$resourceLink, 
     [Parameter(Mandatory=$true)][String]$resourceType, 
     [Parameter(Mandatory=$true)][String]$dateTime, 
     [Parameter(Mandatory=$true)][String]$key, 
     [Parameter(Mandatory=$true)][String]$keyType, 
     [Parameter(Mandatory=$true)][String]$tokenVersion 
    ) 

    $hmacSha256 = New-Object System.Security.Cryptography.HMACSHA256 
    $hmacSha256.Key = [System.Convert]::FromBase64String($key) 

    $payLoad = "$($verb.ToLowerInvariant())`n$($resourceType.ToLowerInvariant())`n$resourceLink`n$($dateTime.ToLowerInvariant())`n`n" 
    $hashPayLoad = $hmacSha256.ComputeHash([System.Text.Encoding]::UTF8.GetBytes($payLoad)) 
    $signature = [System.Convert]::ToBase64String($hashPayLoad); 

    [System.Web.HttpUtility]::UrlEncode("type=$keyType&ver=$tokenVersion&sig=$signature") 
} 

# query 
Function Query-CosmosDb 
{ 
    [CmdletBinding()] 
    Param 
    (
     [Parameter(Mandatory=$true)][String]$EndPoint, 
     [Parameter(Mandatory=$true)][String]$DataBaseId, 
     [Parameter(Mandatory=$true)][String]$CollectionId, 
     [Parameter(Mandatory=$true)][String]$MasterKey, 
     [Parameter(Mandatory=$true)][String]$Query 
    ) 

    $Verb = "POST" 
    $ResourceType = "docs"; 
    $ResourceLink = "dbs/$DatabaseId/colls/$CollectionId" 

    $dateTime = [DateTime]::UtcNow.ToString("r") 
    $authHeader = Generate-MasterKeyAuthorizationSignature -verb $Verb -resourceLink $ResourceLink -resourceType $ResourceType -key $MasterKey -keyType "master" -tokenVersion "1.0" -dateTime $dateTime 
    $queryJson = @{query=$Query} | ConvertTo-Json 
    $header = @{authorization=$authHeader;"x-ms-documentdb-isquery"="True";"x-ms-version"="2017-02-22";"x-ms-date"=$dateTime} 
    $contentType= "application/json "# The original said "application/query+json", I tried both 
    $queryUri = "$EndPoint$ResourceLink/docs" 

    $result = Invoke-RestMethod -Method $Verb -ContentType $contentType -Uri $queryUri -Headers $header -Body $queryJson 

    $result | ConvertTo-Json -Depth 10 
} 

# fill the target cosmos database endpoint uri, database id, collection id and masterkey 

$DatabaseName = "" # name goes here 
$MasterKey = "" #key goes here 
$CollectionId = "transientUsers" 

$DatabaseId = $DatabaseName 
$CosmosDBEndPoint = "https://$DatabaseId.documents.azure.com:443/" 

# query string 
$Query = "SELECT * FROM transientUsers" 

# execute 
Query-CosmosDb -EndPoint $CosmosDBEndPoint -DataBaseId $DataBaseId -CollectionId $CollectionId -MasterKey $MasterKey -Query $Query 

錯誤我越來越:

Invoke-RestMethod : The remote server returned an error: (404) Not Found. 
At D:\querycosmos\PowerShell\QueryCosmosDB.ps1:69 char:12 
+ ... $result = Invoke-RestMethod -Method $Verb -ContentType $contentType ... 
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-RestMethod], WebException 
    + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeRestMethodCommand 

回答

1

我注意到,你在兩個地方使用$DatabaseId

$ResourceLink = "dbs/$DatabaseId/colls/$CollectionId" 

$CosmosDBEndPoint = "https://$DatabaseId.documents.azure.com:443/" 

如果$DatabaseId指的是您的帳戶名,那麼你就需要改變你的$ResourceLink變量和使用的數據庫的名稱包含收集您的帳戶內。但是,如果$DatabaseId引用數據庫名稱,那麼您需要更改$CosmosDBEndPoint並在那裏使用帳戶名稱。

+0

嗨Gaurav Mantri,謝謝你的迴應。 你指的是哪個帳戶名稱? 我最初認爲你的意思是天藍色訂閱? – tamarack

+0

請參閱:https://docs.microsoft.com/en-us/azure/cosmos-db/create-documentdb-dotnet#create-a-database-account。通過帳戶名稱我的意思是'ID'在鏈接中提到。 –

+0

謝謝,我確實添加了它,但仍然得到與404相同的錯誤。 – tamarack