将powershell的Invoke-RestMethod用于使用Windows身份验证的服务。
我收到401.2未授权例外,但我已通过
确认$currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
我正在使用预期的用户。我已经验证了我的服务的web.config中允许用户。
这是我的实际调用:
Invoke-RestService -Method "POST" -Uri $serviceApiUri -Body (ConvertTo-Json $body) -UseDefaultCredentials -ContentType "application/json"
其他人在使用Windows身份验证的PowerShell的Invoke-RestMethod时遇到问题吗?