Reputation: 2113
I have created an app that uses AAD to authenticate with AAD using ADAL, however after reading this link it seems its only possible to assign users to this app using CMDlets and no UI available? is this really true?
Upvotes: 0
Views: 183
Reputation: 9401
You'r right, you can only use cmdlets to assign users to Native App in AAD v1 endpoint.
This is because that Native client registrations are multi-tenant by default. You don’t need to take any action to make a native client application registration multi-tenant. It means that you can sign in this application with any Users in Azure AD with some configuration. So, you wouldn't see Users and Groups in Native client in Enterprise Applications.
However,you can still assign the users (without roles) to native applications by using cmdlets in PowerShell.
Upvotes: 1
Reputation: 58723
You can assign users in the portal.
You need to find your app's service principal from Enterprise applications or the "Managed app in local directory" on the App Registration blade.
From there you should find the Users & Groups tab, where you can assign users.
Upvotes: 0