PowerShell の HTTP GET リクエストを通じて、UTF-8 エンコードのデータを取得できません。
コード:
$headers_tables=@{}
$headers_tables.Add("content-type", "application/xml; charset=utf-8")
$xml_employee_future_jobinfo = Invoke-WebRequest -Uri $url_employee_future_jobinfo -Method GET -Headers $headers_tables
出力:
<?xml version="1.0"?>
<table>
<row id="2968" employeeId="839">
<field id="date">2022-11-28</field>
<field id="location">X</field>
<field id="department">D</field>
<field id="division">Infrastructure & IT</field>
<field id="jobTitle">Z</field>
<field id="reportsTo">X Poli??ski</field>
</row>
</table>
この API リンクをブラウザで開くと、特殊文字とアクセントが付いた XML が期待どおりに表示されます。
これをどうすれば解決できますか?
よろしくお願いします!
答え1
これは、XML を処理し、ファイルにエクスポートし、UTF-8 で読み取ることができる方法として私が見つけたものです。
$headers_tables=@{}
Invoke-WebRequest -Uri $url_employee_future_jobinfo -Method GET -Headers $headers_tables -OutFile "C:\Scripts\Power_Automate\xmldump_jobinfo.xml"
[xml]$xml_employee_future_jobinfo = get-content "C:\Scripts\Power_Automate\xmldump_jobinfo.xml" -Encoding "utf8"
Write-Host "XML: "
$xml_employee_future_jobinfo.table.row.field
出力:
id #text
-- -----
date 2022-11-28
location X
department D
division Infrastructure & IT
jobTitle Z
reportsTo X Poliński