We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf04d2 commit 6a25106Copy full SHA for 6a25106
1 file changed
Agent/Lib/InstallAgent-Core.psm1
@@ -3082,7 +3082,7 @@ function RequestAzWebProxyToken {
3082
$Uri = "https://$($Config.AzNableProxyUri)/api/Get?Code=$($Config.AzNableAuthCode)&ID="
3083
try {
3084
$Uri += "$($Install.ChosenMethod.Value)"
3085
- $Response = (Invoke-WebRequest -Method GET -Uri $Uri).Content
+ $Response = (Invoke-WebRequest -Method GET -Uri $Uri -UseBasicParsing).Content
3086
}
3087
catch {
3088
$Out = "Error retrieving token from $Uri using $($Install.ChosenMethod.Name)"
0 commit comments