PowerShell Invoke-RestMethod cmdlet无法发送第二次身份验证质询?

时间:2016-12-07 00:02:13

标签: rest powershell windows-authentication sspi iwa

将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时遇到问题吗?

0 个答案:

没有答案