PowerShelllibjava正在从Docker容器中的Java代码中获取无效的JSON令牌
我正在使用powershelllibjava( https:// https://github.com/tuupertub.com/tuupertunut/powershelllibjava,从Azure访问令牌。 早些时候,它在Docker容器中工作正常。 在Windows Machine上,其工作正常,但是在Docker容器中获取时,它提供了无效的访问令牌(二进制内容而不是JSON)
,可以成功地登录登录
az login --allow-no-subscriptions -u <emailAddress> -p <password>
。
通过“ executecommands”使用此命令来获取令牌
az account get-access-token --resource-type ms-graph
groovy脚本和Shell都可以在容器中获取有效的访问令牌,但是Java代码未能获取令牌。
I am using PowerShellLibJava (https://github.com/Tuupertunut/PowerShellLibJava) in java code to fetch access token from azure.
Earlier it was working fine in docker container.
On windows machine, its working fine but when fetching in docker container it's providing invalid access token (binary content instead of JSON)
To login using command
az login --allow-no-subscriptions -u <emailAddress> -p <password>
login successfully.
using this command through "executeCommands" to fetch token
az account get-access-token --resource-type ms-graph
groovy script and shell both are able to fetch valid access token in container but java code is failing to fetch the token.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该错误表明您在获得时不转换JSON ,同时获得访问令牌。
1。使用AZ-CLI
您可以从JSON转换访问令牌。
2。使用PowerShell,
您可以使用 get-azaccesstoken 获取MS-Graph
参考
的访问令牌比较 Azaccesstoken
The error shows that you are not converting the JSON while getting the Access Token.
1. Using AZ-CLI
you can convert the Access token from JSON.
2. Using PowerShell
You can use the Get-AzAccessToken to get the Access Token of ms-graph
Reference
Compare get-access-token and Get-AzAccessToken
经过深入的调查,我发现命令响应以UTF8 BOM开头,这使JSON响应在程序代码中无效。 Windows PowerShell确实处理BOM本身。
After deep investigation, I found that command response start with a utf8 BOM which was making JSON response invalid in the program code. Where as Windows PowerShell does handle BOM itself.