Exam AZ-500 All QuestionsBrowse all questions from this exam
Question 40

You need to consider the underlined segment to establish whether it is accurate.

Your Azure Active Directory Azure (Azure AD) tenant has an Azure subscription linked to it.

Your developer has created a mobile application that obtains Azure AD access tokens using the OAuth 2 implicit grant type.

The mobile application must be registered in Azure AD.

You require a redirect URI from the developer for registration purposes.

Select `No adjustment required` if the underlined segment is accurate. If the underlined segment is inaccurate, select the accurate option.

    Correct Answer: A

    The mobile application must be registered in Azure AD, and part of the registration process involves specifying a redirect URI. The redirect URI is crucial as it is used by Azure AD to return token responses to the application after authentication. This ensures that the authentication responses are sent to the correct location specified by the application. Therefore, the underlined segment is accurate.

Discussion
RumeOption: A

given answer is correct. "No adjustment required"

helpaws

https://docs.microsoft.com/en-us/azure/active-directory/develop/reply-url

LDodgeOption: D

As per Microsoft's documentation, a Client ID is REQUIRED, while a Redirect URI is only RECOMMENDED https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-implicit-grant-flow

CaioAugusto

At your link the client_id is referred not to register the app, but instead after, to obtain a token from Azure AD. To register an app you just need the redirect uri. Correct response is A - No adjustment required.

Siblark

You require a client id for access purposes but need a REDIRECT URI to register an app. Sometimes, you may not enter it during registration, but you must enter it later on. https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app

zellck

Client ID is generated when app is registered, not given by developer. https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#register-an-application When registration finishes, the Azure portal displays the app registration's Overview pane. You see the Application (client) ID. Also called the client ID, this value uniquely identifies your application in the Microsoft identity platform.

xRiot007

A client ID is required for access, not for registration. The problem is at the step where the app needs registering. The Client ID (or App ID) is what you get after the registration is done.

majstor86Option: A

A. No adjustment required

JaridBOption: A

The underlined segment regarding the requirement for a redirect URI from the developer for Azure AD app registration is accurate. In the context of Azure Active Directory (Azure AD), when registering a mobile application that obtains Azure AD access tokens using the OAuth 2.0 implicit grant type, it is indeed necessary to provide a redirect URI. This redirect URI is where the Microsoft identity platform sends the user after authentication, and it is crucial for the correct operation of the application, as it receives the authentication response from Azure AD at this URI​ (MS Learn)​. Thus, the correct choice based on the information is: A. No adjustment required This choice is supported by the official Azure documentation, which explains the importance of specifying a redirect URI during the app registration process. The redirect URI is a fundamental part of setting up authentication flows within Azure AD​ (MS Learn)​.

zellckOption: A

A is the answer. https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri A redirect URI is the location where the Microsoft identity platform redirects a user's client and sends security tokens after authentication.

ArchitectXOption: D

"No adjustment required"

LeandroFerrazOption: A

No adjustment required. The underlined segment is accurate. In Azure AD, applications must be registered and assigned permissions to access resources such as APIs or user data. In this scenario, the mobile application requires registration in Azure AD to obtain Azure AD access tokens using OAuth 2 implicit grant type. The registration process involves providing a redirect URI to Azure AD, which is used by Azure AD to redirect the user's browser back to the application after authentication. Therefore, the underlined segment stating "The mobile application must be registered in Azure AD" is accurate.

khaled_razoukOption: A

A you can do it from the app registration

hfk2020

The Redirect URI is where Azure AD will send the user after they have authenticated. This is a security measure to ensure that the authentication response is sent only to the authorized location specified by the application.

wardy1983Option: D

Answer: D Explanation: 1. As per Microsoft's documentation, a Client ID is REQUIRED, while a Redirect URI is only RECOMMENDED https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-implicit-grant-flow 2. CLIENT ID

flafernanOption: A

The client ID is required to register the mobile application with Azure AD and ensure that it can obtain access tokens using the OAuth 2 implicit flow. The "client ID" is a unique identifier for the application in Azure AD. Redirect URI: This is equally necessary as it defines where the authorization server should redirect the user after authentication is complete. This redirection is essential so that the server knows where to send the access token.

flafernanOption: D

The client ID is required to register the mobile application with Azure AD and ensure that it can obtain access tokens using the OAuth 2 implicit flow. The "Client ID" is a unique identifier for the application in Azure AD. URI redirection is also required, but is not in the list of options offered. Therefore, the "D. a customer ID" option is the most accurate answer available.

timHAGOption: D

agree its d

ArioOption: D

require a client ID

Andre369Option: D

When registering a mobile application in Azure AD, you would require a redirect URI for registration purposes. The redirect URI is used to redirect the user back to the application after authentication. However, the redirect URI is not mentioned in the underlined segment.

zellckOption: A

A is the answer. https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#add-a-redirect-uri A redirect URI is the location where the Microsoft identity platform redirects a user's client and sends security tokens after authentication.

Holii

Correct. Redirect URI is optional in the app registration...but nothing is 'required' for entry when registering an application. These values are all generated for you...so not sure what this question is asking. Redirect uri is optional: https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app

SnaileyesOption: A

Given answer is correct. The app registration process assigns the client_id to the app. The client_id doesn't come from the developer.