0

Invoke-RestMethod用来从我们的 HRIS(人力资源信息系统)中提取员工数据:

$employee = Invoke-RestMethod -Method Get -Headers $headers -Uri $URI -ContentType 'application/json'

它返回这个 PSobject,我无法引用这些值:

employees                                                                                                                                                                                                                                                        
---------                                                                                                                                                                                                                                                        
{@{account_id=12345; username=12345; is_locked=False; employee_id=12345; first_name=John; middle_initial=Roger; last_name=Doe; full_name=John Roger Doe}}

我正在尝试提取单个值以用作脚本其余部分中的变量。


我尝试过的事情:

Write-Output ($employee | Select -ExpandProperty "first_name")

Write-Output $employee.Properties["first_name"].Value


按要求完成脚本

$APIkey = "supersecret"
$KronosAccount = Read-Host -Prompt 'Input your Kronos admin ID'
$KronosPassword = Read-Host -Prompt 'Input your Kronos password' -AsSecureString
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($KronosPassword)
$PlainPassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)

$loginheaders = @{}
$loginheaders.Add("Api-Key", $APIkey)
$loginheaders.Add("Accept", "application/json")


$json = @{
  credentials = @{
    username = $KronosAccount
    password = $PlainPassword
    company = '123456'
  }
}

$token = Invoke-RestMethod -Method Post -Headers $loginheaders -Uri https://secure3.saashr.com/ta/rest/v1/login -ContentType 'application/json' -Body (ConvertTo-json $json) 
$tokenvalue = ($token | Select -ExpandProperty "token")

$NewEmployeeID = Read-Host -Prompt 'Input the employee ID to create an account for'

$headers = @{}
$headers.Add("Api-Key", $APIkey)
$headers.Add("Accept", "application/json")
$headers.Add("Authentication", "Bearer $tokenvalue")

$URI = "https://secure3.saashr.com/ta/rest/v1/employees/?company=123456&filter=username::$NewEmployeeID"
$employee = Invoke-WebRequest -Method Get -Headers $headers -Uri $URI -ContentType 'application/json'

$employee.employees
4

1 回答 1

2

好的,你那里有一些时髦的东西。您作为 Invoke-RestMethod 的返回结果提供的值实际上是反序列化的 PowerShell 对象,而不是 JSON。它似乎也在某个时候删除了它的引号。

如果你这样做: $x = @{account_id="12345"; username="12345"; is_locked="False"; employee_id="12345"; first_name="John"; middle_initial="Roger"; last_name="Doe"; full_name="John Roger Doe"}

那么你可以这样做:

$x.full_name

并获得你想要的价值。我认为您会想要联系托管该 API 的任何人,并让他们在那里解决这个问题。

为了确保这个问题没有被引入客户端,你可以替换Invoke-RestRequestInvoke-WebRequest(它应该采用所有相同的参数)。然后运行$employee.rawContent并发布结果。这将让我们确切地知道线路上发生了什么。

于 2017-07-20T19:13:06.527 回答