implicitGrantSettings resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Specifies whether this web application can request tokens using the OAuth 2.0 implicit flow. Separate properties are available to request ID and access tokens as part of the implicit flow. To enable implicit flow, at least one of the following properties must be set to true.

Properties

Property Type Description
enableIdTokenIssuance Boolean Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow.
enableAccessTokenIssuance Boolean Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow.

JSON representation

The following JSON representation shows the resource type.

{
  "enableIdTokenIssuance": "Boolean",
  "enableAccessTokenIssuance": "Boolean"
}