gpt4 book ai didi

azure - 有没有办法使用 PowerShell 检索 Azure AD 应用程序的客户端 key ?

转载 作者:行者123 更新时间:2023-12-02 23:24:24 25 4
gpt4 key购买 nike

是否可以使用 PowerShell 以纯文本形式从 Azure AD 应用程序检索客户端 key ?

我尝试使用以下命令,但它仅返回 secret 的类型,而不是实际值。

$objectID = "00000-00000-00000-00000"
$keyID = "00000-00000-00000-00000"
$secret = Get-AzADAppCredential -ObjectId $objectID | Where-Object {$_.KeyId -eq $keyID}
$secret

enter image description here

最佳答案

无法以任何方式检索创建的客户端 key 的值。

secretText的解释:

The generated password value is only returned during the initial POSTrequest to addPassword. There is no way to retrieve this password inthe future.

唯一的方法是add new Client Secret并安全地存储新值。

$SecureStringPassword = ConvertTo-SecureString -String "password" -AsPlainText -Force
New-AzADAppCredential -ObjectId 1f89cf81-0146-4f4e-beae-2007d0668416 -Password $SecureStringPassword

关于azure - 有没有办法使用 PowerShell 检索 Azure AD 应用程序的客户端 key ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67099027/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com