Questions tagged [azure-app-registration]
88 questions
0
votes
1 answer
How to pass custom param for creating access token and fetch it while validating token in Azure AD
I am creating Bearer token from Azure AD using the following
URL - https://login.microsoftonline.com/{tenantId}/oauth2/v2.0/token
Request Method - POST
Payload -
{
"client_id": "",
"client_secret": "",
"scope: "",
"grant_type":…

Akki
- 107
- 1
- 5
- 14
0
votes
1 answer
How to manage Azure App roles from external application
I am building an application which uses role based access and have created custom app roles in Azure App Registration and have also assigned some users with roles in Enterprise Application. My Question is, can we do the removal & assignment of these…

ezcoth
- 31
- 3
0
votes
1 answer
Azure AD adminconsent? multi tenant application management
I have multiple queries relating to application design. based on what i read from
https://learn.microsoft.com/en-us/azure/active-directory/develop/permissions-consent-overview#comparison-of-delegated-and-application-permissions
I need Application…

P V Ajay Thota
- 91
- 1
- 2
- 7
0
votes
1 answer
Azure AD app registration differentiate between roles
I have an App Registration in Azure AD which has App Roles (eg: role1, role2). Against this app multiple environments connect to it and get a role back. Is it in someway possible to specify a role based on who connects to it?
So if User X connects…

darkownage
- 938
- 16
- 38
0
votes
1 answer
Remove-MgApplicationKey - delete expired app registration certificates
I am updating my current scripts from the AzureAD module and want to update a script which deletes expired app registration certificates.
I can remove expired secrets using the new module, however the new command Remove-MgApplicationKey requires…
0
votes
1 answer
Azure App Registration "Roles and administrators"
can anyone tell what "Roles and administrators" under App Registration (as well as Enterprise Application) is there for?
Seems that it always has "Cloud Application Administrator", but this role is NOT assigned to the service principal. I didn't…

PauLy
- 79
- 7
0
votes
1 answer
How does an Azure Active Directory app registration establish trust?
The Microsoft docs state:
Registering your application establishes a trust relationship between your app and the Microsoft identity platform. The trust is unidirectional: your app trusts the Microsoft identity platform, and not the other way…

Good Night Nerd Pride
- 8,245
- 4
- 49
- 65
0
votes
1 answer
Permissions for SAAS in Azure AD
I am looking to develop a SAAS product where tenant from different organizations can log into my application and there are specific set of custom Permissions that I want to create for my application which will allow users to access different…

Ankit Tibriwal
- 1
- 1
0
votes
1 answer
How can we take user inputs in azure runbooks using powershell? does It supports user interaction?
I have a PS script that register's an app in Azure AD. I want to add redirect URLs using ps script. I tried to take user inputs like,
$uri = Read-Host -Prompt "enter URI"
but this didn't work and threw the following error.
I have no clue what would…
0
votes
1 answer
Azure Static Web App with custom authentication(Azure AD) has a login Loop
I'm trying to build custom authentication for a Azure Static Web App. I've followed the tutorial of assigning roles via Graph API. I've it working for two users, everyone else get's a login loop.
Added custom authentication in the…

DaniëlC
- 1
- 3
0
votes
2 answers
How do I connect to Azure through PowerShell Modules, using the Service principal of a Registered App?
I need to create a powershell script that queries Azure Resources.
What I have is an App Registration.
App Registrations give us the following information:
# --- APP REGISTRATION OUTPUT
# appId = "***** APP ID *******"
# displayName =…

houba
- 496
- 7
- 20
0
votes
0 answers
How to get custom claims in access token not id token?
In my application, I created few attributes and added those custom attributes in optional claims section selecting both access token and id token.
In Manifest file of application, claims added to both types: access token and id token. But the…

Manjeet
- 13
- 4
0
votes
1 answer
Mail.Send permission status blank
I'm attempting to send mail from my app as the current user. When I add in the Delegated Mail.Send API Permission to do this, the status is empty - it is neither 'granted' or 'not granted'; neither is it showing an error. I also tried adding…

Jo G
- 65
- 9
0
votes
3 answers
Error when trying to create service connection in azure devops
My requirement is to use Azure Devops services to create services connection, so I created an azure AD application in azure portal
In azure Devops project setting I created a new service connection but when I click on verify it throws me the…

robert
- 3
- 1
- 3
0
votes
2 answers
Azure: Python SDK to list and calculate expired app registration client secrets
I am looking for a method to connect to Azure SDK via Python to get a list of expired app registration secrets before the 30 day expiration limit. I know this can be done using Powershell, but how would we would go with plugging Python SDK into…

powerlordx1
- 57
- 5