Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invoke-RestMethod utf8 characters?

I´m doing a PUT from Invoke-RestMethod and the endpoint doesn't like my swedish charcters åäö. I have verified from downloaded curl on my Windows CMD window, and got the same results error 400. The strange thing is that it works from PostMan on my machine. Could it have something to do with utf8 and BOM? tried tried to remove it from my string but it didn´t helped.

Not working:

{    "User":  {
                 "email":  "[email protected]",
                 "last_name":  "Åkesson",
                 "first_name":  "Thomas",
                 "enabled":  true
             }
}

Working:

{
    "User":  {
                 "email":  "[email protected]",
                 "last_name":  "akesson",
                 "first_name":  "Thomas",
                 "enabled":  true
             }
}

Issue seems for me related to Changing PowerShell's default output encoding to UTF-8? Or could the endpoint itself have some bugs?

like image 332
user3519275 Avatar asked Jun 09 '26 08:06

user3519275


2 Answers

Solved it with this line:

$body = [System.Text.Encoding]::UTF8.GetBytes($json)

Answer: Microsoft: Invoke-RestMethod and UTF-8 data

like image 69
user3519275 Avatar answered Jun 10 '26 23:06

user3519275


I had this issue with danish characters åæø when trying to post something in teams using PowerShell. I found that the solution was to include the character encoding in the call:

$FilePath = '.\body.txt'
$fileContent = Get-Content -Path $FilePath -Encoding UTF8 
Write-host $fileContent
Invoke-RestMethod -ContentType "application/json; charset=windows-1252" -Uri "https://example.webhook.office.com/webhookb2" -Method 'Post' -Body $fileContent

i.e. including charset=windows-1252 did the trick for me.

like image 41
NDM Avatar answered Jun 10 '26 23:06

NDM