admin管理员组文章数量:1344240
I am calling a third party service provider REST call. The reset accept header called Version, which is supposed to be a string, and the string is base64 from a byte array. All POST, DELETE, PUT methods should provide a version in the header and the version should match the version on the server.
Calling URL is working from all types of clients except powershell 7.5.0 (not windows powershell, but powershell)
So, for example the version is = "AAAAAAAB1Z4="
In Swagger UI, I provide the header version as string value, and Swagger UI tells me that the Version header is a string And Swagger works fine
In postman I provide the version as string (without double quotes), and it is working fine.
In Curl in call this
curl --location --request DELETE '' \
--header 'CLIENT-ID: 124' \
--header 'Version: AAAAAAAB1Z4=' \
--header 'Authorization: Bearer ....' \
--data ''
And it is working
Using C# with HttpClient, and it is working
Except from Powershell
I do the following:
$version = "AAAAAAAB1Z4="
$deleteHeaders = @{
"Authorization" = $bearerToken
"Content-Type" = "application/json"
"CLIENT-ID" = "124"
"Version" = $version
}
$body = @"
"@
$response = Invoke-RestMethod '' -Method 'DELETE' -Headers $deleteheaders -Body $body
And this return error message
The format of value 'AAAAAAAB1Z4=' is invalid.
I tried as well the following:
I tried to add ""application/json; charset=utf-8" as content-type, and the same problem
passing this value '"AAAAAAAB1Z4="' , (single quote outside double quote) and this will return a different error that the version doesn't match
Any idea?
本文标签: httpclientCalling a REST API from PowershellStack Overflow
版权声明:本文标题:httpclient - Calling a REST API from Powershell - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743739244a2530583.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论