Scenarios - Build Flashcards
A tenant represents an …
organisation
To build apps that use the Microsoft Identity platform for identity and access management, you need access to an …
Azure Active Directory (Azure AD) tenant
What is the URL for the Microsoft Entra admin centre?
https://entra.microsoft.com
In the MS Entra admin centre where can I see the Tenant ID?
- Hover over the user profile
- Identity –> Overview
What does the acronym IAM stand for?
Identity and Access Management
To create a new tenant
- Sign in to the Azure portal
- Select Azure Active Directory
- Select Manage tenants
- Create
- Choose the type of tenant: Workforce or Customer
- Select Next: Configuration
- Fill out the Configuration fields
- Next: Review and Create
When you create a new tenant, you become the … of that tenant and are assigned the ….. role
- First user
- Global Administrator
What Azure AD roles include permissions to manage applications?
- Application administrator
- Application developer
- Cloud application administrator
How do I register an application in Azure AD?
- Sign into the Azure portal
- If required, switch tenants
- Search for an select Azure Active Directory
- Under Manage, select App registrations > New registration
- Enter the display Name for the application
- Specify the sign-in audience
- Enter the Redirect URI (optional)
- Select Register to complete the initial app registration
What is the value that uniquely identities your application in the Microsoft Identity Platform
Application (client) ID
Are new app registrations visible to users by default?
No, they are hidden. To enable the app navigate to Azure Active Directory > Enterprise applications and select the App. Then on the properties page toggle Visible to users to Yes.
Where can a user see the available applications?
myapps.microsoft.com
During development what is an example of redirect URI you might use where you run your app locally?
https://127.0.0.1/auth-response https://localhost/auth-response
How do you configure platform settings for an application?
- In the Azure portal, in App registrations, select your application
- Under Manage, select Authentication
- Under Platform configurations, select Add a platform
- Under Configure platforms, select the tile for the application type (platform) to configure it’s settings
- Select Configure
You cannot use the Redirect URIs text box to set http://127.0.0.1 as the redirect URL. How can this be done?
Modify the replyUrlsWithType
attribute in the application manifest.
... "replyUrlsWithType": [ { "url": "http://127.0.0.1/auth-response", "type": "Web" } ], ...