是否可以从Azure Powershell中写出Oauth Token进行调试

时间:2016-01-12 11:52:25

标签: azure-powershell

使用Add-AzureRMAccount进行身份验证后,我想打印oauth令牌以调试其声明。

这是否可以在Azure Powershell中使用?

1 个答案:

答案 0 :(得分:1)

不,这是不可能的。

Add-AzureRMAccount 的输出对象仅具有以下属性:

  • 环境
  • 帐户
  • TenantId
  • SubscriptionId
  • CurrentStorageAccount

即使 -Debug Add-AzureRMAccount 切换,调试消息也不打印出实际的OAuth令牌,只打印令牌哈希打印出来。

enter image description here

更新1:使用 Microsoft Azure PowerShell 2016年1月(1.1.0)再次测试

仍然只显示令牌哈希。

enter image description here