CLI使用AllowImplicit创建AD应用

CLI使用AllowImplicit创建AD应用

本文介绍了Azure CLI使用AllowImplicit创建AD应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是否可以通过任何方式创建或修改AzureAD应用程序以允许通过Azure CLI 2.0进行OAuth 2.0隐式流程?

Is there any way that I can create or modify an AzureAD App to allow the OAuth 2.0 Implicit flow via the Azure CLI 2.0?

我能够使用 az广告应用程序创建

推荐答案

它看起来不像Azure CLI 2.0公开了要设置的OAuth2AllowImplicitFlow属性,但是 Azure Active Directory PowerShell 2.0 确实公开了此属性:

It does not look like the Azure CLI 2.0 exposes the OAuth2AllowImplicitFlow property to be set, however the Azure Active Directory PowerShell 2.0 does expose this property:

指定此Web应用程序是否可以隐式请求OAuth2.0流令牌.默认值为false.

Specifies whether this web application can request OAuth2.0 implicitflow tokens. The default is false.

类型:布尔值

位置:已命名

默认值:无

接受管道输入:False

Accept pipeline input: False

接受通配符:False

Accept wildcard characters: False

让我知道这是否有帮助.

Let me know if this helps.

这篇关于Azure CLI使用AllowImplicit创建AD应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 18:12