我正在尝试访问Sonarqube在我们本地服务器上的web api。Sonarqube文档中的示例都是基于卷的,我试图将它们转换为PowerShell,调用- webrequest或调用- restmethod。我的证件有问题。我一直收到401未授权错误。我已经看过了我能找到的每一篇关于如何做到这一点的文章,但我没有看到一个全面完整的答案。
这是我现在运行的:
$user='myUserid'
$password='myPassword'
$secpasswd = ConvertTo-SecureString $password -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential ($user, $secpasswd)
$uri="http://myServer.ad1.prod:9000/api/properties"
Invoke-RestMethod -Uri $uri -Credential $cred -Method Get
响应是:
Invoke-RestMethod : {"err_code":401,"err_msg":"Unauthorized"}
我已经运行了原始产品文档中定义的curl命令,它可以工作。相同的用户id,相同的密码,相同的URI,相同的方法。
谁能给点建议?
curl命令是:
curl -u myID:myPassword X GET http://myServer.ad.prod:9000/api/properties
我认为你需要像这样传递一个证书:
$username = "user"
$password = "password"
$authInfo = ("{0}:{1}" -f $username,$password)
$authInfo = [System.Text.Encoding]::UTF8.GetBytes($authInfo)
$authInfo = [System.Convert]::ToBase64String($authInfo)
$headers = @{Authorization=("Basic {0}" -f $authInfo)}
Invoke-RestMethod -Method Head -Uri "https://pathtowhatever" -ContentType 'text/json' -Headers $headers