- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用密码凭据创建 Azure Active Directory 应用程序。以下文档使用密码而不是PasswordCredentials https://learn.microsoft.com/en-us/powershell/module/az.resources/new-azadapplication?view=azps-2.4.0
有人可以建议我如何使用 Az 模块创建 PasswordCredentials 对象并传入 New-AzADApplication
New-AzADApplication -DisplayName "xxx" -IdentifierUris "xxx" -PasswordCredentials
最佳答案
尝试以下操作:
$passwordCred = [Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential]@{
"StartDate" = [DateTime]::UtcNow
"EndDate" = [DateTime]::UtcNow.AddYears(1)
"Password" = "{password-here}"
}
New-AzADApplication -DisplayName "My_app" `
-IdentifierUris "https://example.com/api" `
-PasswordCredentials @($passwordCred)
关于azure - 如何使用 Azure PowerShell 创建 PasswordCredentials 对象并传入 New-AzADApplication,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56890269/
在 WinRT API 中有 Windows.Security.Credentials 命名空间,其中包含 PasswordCredential类(class)。使用它我们可以加密用户名和密码等敏感数
在我的应用程序中,我想使用 PasswordVault 类存储用户凭据,因为这是推荐的方法。但是,我意识到使用此方法存储的凭据与用户的 Microsoft 帐户同步,这是我不想要的。 我知道用户可以在
我正在尝试使用以下代码在 Windows Phone 8.1 PasswordVault 中存储用户名密码,它存储数据但是当我检索密码字段时始终为空。 PasswordVault password
我想在我的 Angular 应用中实现凭证管理 API 我的 login.html 看起来像这样 {{'label.
您好,如果客户已知,我们一直在使用以下流程来触发自定义 Chrome 登录事件。最近我们遇到了这个警告。 (index):1259 [弃用] 将 'PasswordCredential' 对象传递到
我正在使用 Angular 7 制作一个应用程序,我想将用户的密码存储在链接内置的 chrome 中!我无法使用它,因为无法创建“新的 PasswordCredential”。 我可以使用“(任何窗口
我想使用密码凭据创建 Azure Active Directory 应用程序。以下文档使用密码而不是PasswordCredentials https://learn.microsoft.com/en
我是一名优秀的程序员,十分优秀!