Powershell ConvertFrom-Json Encoding Special Characters Issue

Peter Schneider’s helpful answer and Nas’ helpful answer both address one problem with your approach: You need to: either: access the .Content property on the response object returned by Invoke-WebRequest to get the actual data returned (as a JSON string), which you can then pass to ConvertFrom-Json. or: use Invoke-RestMethod instead, which returns the data … Read more