我目前正在使用 powershell 进行一些基本的 API REST 测试。
但是,我在捕获特定输出数据时遇到问题
例如:
$bearer = Invoke-RestMethod -Method POST -Body $body -uri "https://api.yourwebsite.com/oauth/token"
Output:
access_token
------------
{longtokenhere}
但是当它与标题一起使用时:
$header = @{Authorization = "Bearer "+$bearer}
Output is:
Name Value
---- -----
Authorization Bearer @{access_token={longtokenhere}}
我想知道如何才能删除“@{access_token=}”部分,以便只使用 {longtokehere}?