Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam AZ-500 topic 1 question 40 discussion

Actual exam question from Microsoft's AZ-500
Question #: 40
Topic #: 1
[All AZ-500 Questions]

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.

  • A. No adjustment required
  • B. a secret
  • C. a login hint
  • D. a client ID
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️
For Native Applications you need to provide a Redirect URI, which Azure AD will use to return token responses.
Reference:
https://docs.microsoft.com/en-us/azure/active-directory/develop/v1-protocols-oauth-code

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Rume
Highly Voted 2 years, 10 months ago
given answer is correct. "No adjustment required"
upvoted 40 times
helpaws
2 years, 3 months ago
https://docs.microsoft.com/en-us/azure/active-directory/develop/reply-url
upvoted 1 times
...
...
LDodge
Highly Voted 2 years, 4 months ago
Selected Answer: 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
upvoted 31 times
zellck
11 months, 4 weeks ago
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.
upvoted 6 times
...
CaioAugusto
2 years, 1 month ago
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.
upvoted 6 times
...
Siblark
1 year, 7 months ago
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
upvoted 2 times
...
zorglub
2 years, 3 months ago
In your link the Client ID is the registration ID assigned in Azure AD : (Client ID = The Application (client) ID that the Azure portal - App registrations page assigned to your app.) But that's what we a trying to do (The mobile application must be registered in Azure AD.) You cannot get what is not yet created
upvoted 14 times
...
...
JaridB
Most Recent 2 weeks, 3 days ago
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)​.
upvoted 2 times
...
khaled_razouk
1 month ago
Selected Answer: A
A you can do it from the app registration
upvoted 1 times
...
hfk2020
4 months, 2 weeks ago
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.
upvoted 1 times
...
wardy1983
5 months, 2 weeks ago
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
upvoted 1 times
...
flafernan
6 months, 1 week ago
Selected Answer: 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.
upvoted 1 times
...
flafernan
6 months, 1 week ago
Selected Answer: 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.
upvoted 1 times
...
ArchitectX
7 months, 2 weeks ago
Selected Answer: D
"No adjustment required"
upvoted 2 times
...
timHAG
9 months ago
Selected Answer: D
agree its d
upvoted 1 times
...
Ario
10 months ago
Selected Answer: D
require a client ID
upvoted 1 times
...
Andre369
11 months, 2 weeks ago
Selected Answer: 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.
upvoted 1 times
...
zellck
11 months, 4 weeks ago
Selected Answer: 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.
upvoted 1 times
Holii
11 months ago
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
upvoted 1 times
...
...
zellck
11 months, 4 weeks ago
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.
upvoted 3 times
...
Snaileyes
1 year ago
Given answer is correct. The app registration process assigns the client_id to the app. The client_id doesn't come from the developer.
upvoted 1 times
...
LeandroFerraz
1 year, 1 month ago
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.
upvoted 2 times
...
majstor86
1 year, 1 month ago
Selected Answer: A
A. No adjustment required
upvoted 6 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...