Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Invoke-WebRequest does not support UTF-8 (СКУД) #5528

Copy link
Copy link
@lipkau

Description

@lipkau
Issue body actions

@## Steps to reproduce
Assuming you have a URI that returns json and contains a non-Latin char
My sample is a Confluence wiki page which I am requesting with REST

$splatParameters = @{
              Uri             = "https://powershell.atlassian.net/wiki/rest/api/content/13009245?expand=space,version,body.storage,ancestors&limit=25"
              Method          = "GET"
              Headers         = @{
  "Accept-Charset"                = "utf-8"
  "Accept"                        = "application/json"
  "Content-Type"                  = "application/json; charset=utf-8"
  "Authorization"                 = "Basic abcd"
  }
              UseBasicParsing = $true
              ErrorAction     = 'SilentlyContinue'
          };
  Set-Content -Value (Invoke-WebRequest @splatParameters).Content -Path c:\temp\export.txt -Encoding UTF8 -force

Expected behavior

Invoke-WebRequest is able to write the file with full support of the unicode chars of the source.
In this example: Схема СКУД

Actual behavior

The REST call should return a json like this:

{"id":"13009245","type":"page","status":"current","title":"Схема СКУД","space":{....

instead, the content of c:\temp\export.txt (see example ebove) contains:

{"id":"13009245","type":"page","status":"current","title":"С�ема С�У�","space":{.....

Environment data

PS C:\Program Files\PowerShell\6.0.0-rc> $PSVersiontable

Name                           Value
----                           -----
PSVersion                      6.0.0-rc
PSEdition                      Core
GitCommitId                    v6.0.0-rc
OS                             Microsoft Windows 10.0.15063
Platform                       Win32NT
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
WSManStackVersion              3.0
Reactions are currently unavailable

Metadata

Metadata

Assignees

No one assigned

    Labels

    Issue-Questionideally support can be provided via other mechanisms, but sometimes folks do open an issue to get aideally support can be provided via other mechanisms, but sometimes folks do open an issue to get aResolution-AnsweredThe question is answered.The question is answered.WG-Cmdlets-Utilitycmdlets in the Microsoft.PowerShell.Utility modulecmdlets in the Microsoft.PowerShell.Utility module

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      Morty Proxy This is a proxified and sanitized view of the page, visit original site.