Powershell Core Invoke-RestMethod提供意外字符(“ M”(代码77)):预期为有效值

时间:2019-03-02 22:29:55

标签: json powershell hashtable powershell-core

这让我发疯,我最近几天一直试图在论坛中找到一些答案,但没有发现任何可以帮助我的问题。也许我只是盲目的。

这是我的问题。我正在尝试使用提供的用于更新页面的API更新我们的Confluence Wiki页面之一。

我有三个脚本或函数:

  1. 部署脚本或控制器脚本,该脚本或控制器脚本调用Create,并在响应(Json)中调用Update
  2. 创建Confluence Json
  3. 更新页面

这是创建功能

function Create-WikiPage
 [CmdletBinding()]
param(
    [Parameter(Mandatory)]
    [ValidateNotNullOrEmpty()]
    [int]$CurrentPageRevisionNumber
) 
    # Creates the ID for new page
$NextPageID=$CurrentPageRevisionNumber + 1

# Creates the json body of the Wiki page
$ToolsPage= @{
    "version"= @{
        "number"= $NextPageID
    };
    "title"= "Windows Build Agent Tool Set";
    "type"= "page";
    "body"= @{
        "storage"= @{
            "value"= "<p><table><tr><th>Vendor-Application</th><th>Version</th></tr></table></p>";
            "representation"= "storage"
        }
    }
} | ConvertTo-Json


$ToolsPage
}

更新功能如下:

Update-WikiPage {
[CmdletBinding()]
param(
    [ValidateNotNullOrEmpty()]
    [string]$Server,

    [Parameter(Mandatory)]
    [ValidateNotNullOrEmpty()]
    [string]$Username,

    [ValidateNotNullOrEmpty()]
    [string]$Password,

    [ValidateNotNullOrEmpty()]
    [long]$PageId,

    [Parameter(Mandatory)]
    [ValidateNotNullOrEmpty()]
    $Data
)
[Net.ServicePointManager]::SecurityProtocol = 'Tls12, Tls11'

$Encoded =  [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("$($Username):$Password"))
$Header = @{"Authorization" = "Basic $Encoded"
        }     
Write-Information ($Data | Out-String)
$Data.GetType()

# Updates the Wiki page
Invoke-RestMethod "$($Server)/rest/api/content/$($PageId)" -Method PUT -Headers $Header -ContentType "application/json" -Body $Data -PreserveAuthorizationOnRedirect 
}

如您所见,作为更新功能的一部分,我从JSon对象中得到了打印。这是打印输出:

    {
  "version": {
    "number": 9
  },
  "body": {
    "storage": {
      "value": "<p><table><tr><th>Vendor-Application</th><th>Version</th></tr></table></p>",
      "representation": "storage"
    }
  },
  "title": "Windows Build Agent Tool Set",
  "type": "page"
}

这是我得到的powershell错误:

VERBOSE: received -byte response of content type application/json
Invoke-RestMethod : {"statusCode":500,"message":"org.codehaus.jackson.JsonParseException: Unexpected character ('M' (code 77)): expected a valid value (number, String, array, object, 'true', 'false' or 'null')\n at [Source: com.atlassian.confluence.plugins.restapi.filters.LimitingRequestFilter$1@6b6831ec; line: 1, column: 2]"}
At C:\Users\ChildsC\Documents\Git\PowerShellModules\Wiki\Update-WikiPage.ps1:65 char:2
+     Invoke-RestMethod "$($Server)/rest/api/content/$($PageId)" -Metho ...
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : InvalidOperation: (Method: PUT, Re...ication/json
}:HttpRequestMessage) [Invoke-RestMethod], HttpResponseException
+ FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeRestMethodCommand

编辑

我注意到他的问题发生在我从Create Json-> Deploy-> Update传递json对象时。 如果我在Deploy脚本中创建json并将其传递给Update,则它可以正常工作。

1 个答案:

答案 0 :(得分:0)

确定

因此,事实证明我是个白痴。而且没有人会看到这个问题,因为我没有发布完整的脚本。

在Create函数的早期,我有一行代码可以将参数发布到控制台:

$PsBoundParameters | Out-String

因此,当我认为脚本仅返回$ ToolsPage值时,它实际上还返回了另一个对象。

因此,更新脚本的原因是因为我明确传递了$ ToolsPage变量。

我通过设置Parameters来发现这一点,该参数应该将对象的值保存为$ Global:variable_name,然后从控制台比较这些值。