Questions tagged [azure-app-registration]
88 questions
0
votes
1 answer
Microsoft Graph Send Mail Shared Mailbox Access is denied. Check credentials and try again
Ive registered an Azure AD application with the API permissions of "Mail.Send" and "Mail.Send.Shared".
The intention is to send emails from, and maybe to, a shared mailbox.
When I try to send an email, I get the following error
{
"error": {
…

Geezer
- 513
- 5
- 17
0
votes
1 answer
Get-AzADAppPermission Id Translator
I'm running the Get-AzADAppPermission command to return a list of Web permissions a App registration has.
The output returns a GUID for the permissions.
How do I translate the output to English terms?
Get-AzADAppPermission -ObjectId…

Geezer
- 513
- 5
- 17
0
votes
1 answer
How to get Shifts from Microsoft Teams Shifts using JavaScript and NodeJS?
I want to obtain a list of my shifts from the Microsoft Teams 'Shifts' App using NodeJS.
I believe the Microsoft Teams Shifts app comes as standard with Microsoft Teams.
The shifts I want to obtain are for a specific 'Schedule' (although there is…

nopassport1
- 1,821
- 1
- 25
- 53
0
votes
1 answer
A ServicePrincipal, created with Microsoft Graph Service Client, won't show up as an 'Enterprise Application' in AAD. What am I missing?
I'm trying to create my app registration (Application) and enterprise application (ServicePrincipal) from code. But, though the service principal is created, it does not show when I go to Enterprise Applications in de AAD admin center.
Below is the…

E. Hekkert
- 139
- 7
0
votes
1 answer
How can I generate a new application secret in Azure B2C?
I have an Azure B2C tenant and an application registered within it. I need to generate a new application secret, and I'd like to do it programmatically using PowerShell and authenticate to b2c with the current secret value. Is that even…

nD0613
- 135
- 1
- 11
0
votes
1 answer
Sharepoint App-only Access - Permission Review
I'm sure the question was already asked, but i didn't find any relevant answer...
I have a Sharepoint Online Tenant and i've registered app-only access via "appinx.aspx".
The Access is granted to have a python script accessing Sharepoint.
Registered…

Bridystone
- 77
- 3
0
votes
1 answer
Add wildcard urls in the Azure AD App redirect url
I have developed an application which will be consumed by more than 500 customers. The application is deployed in the IIS and configured subdomain for each customer to access the application,…

Saravana Kumar
- 3,669
- 5
- 15
- 35
0
votes
1 answer
Azure App Registration using Managed Identities instead of Client Secrets
Im using the Microsoft Identity Web package latest (2.6.2) in .NET Core 7.0 to secure my front end app, which in turn calls a down stream api (API Gateway)
In order to call the downstream API, we have to configure a client secret which is stored in…

OJB1
- 2,245
- 5
- 31
- 63
0
votes
1 answer
Unable to grant admin consent to an app using the Azure Account Owner
Quick summary of my environment:
I currently have just one main account with Azure, under this parent account I then have 1qty tenant configured. I've previously been using Azure AD at the tenant level for managing users and access for my .NET Core…

OJB1
- 2,245
- 5
- 31
- 63
0
votes
0 answers
Issue Authorizing Dynamics 365 ReportSession with App Registration Account
I have an Azure Function that accesses Dynamics 365 reports. It first retrieves an access_token. Then posts to /CMSReports/RSViewer/ReportViewer.aspx to retrieve a report session. Then posts another request to /Reserved.ReportViewerWebControl.axd…

suttonb1
- 193
- 2
- 8
0
votes
1 answer
Custom Azure AD Role to grant the admin consent for the tenant in API permission in App Registration
Currently we have a built Azure AD roles which can use to grant the admin consent in API permission in App Registrations (Global Administrator/Privileged Role Administrator).
Both roles have the Highest privileges so need to create the custom role…

Suri007
- 71
- 1
- 7
0
votes
1 answer
Azure App Registration, App-only access to access Azure ad group returns 403
I have an azure app registration [xyz] which has the listed graph api permissions : group.read.all, user.read and user.read.all
My application uses the above app registration and grant type client credential with the following details
clientid …

Raj
- 77
- 2
- 10
0
votes
1 answer
We need to connect to exchange online and authenticate as a managed service
We need to create email aliases from an API call. It doesn't appear that the Microsoft Graph has this option. We were looking to do this in an Azure Function with Powershell until we have another API option to make it work.
using namespace…

Eric
- 958
- 1
- 11
- 28
0
votes
0 answers
how to validate a bearer token
I get a bearer Token from a azure-app registration in a angular web-app by
login(loginData: any): Observable {
const body = new HttpParams()
.set('client_id',OAUTH_CLIENT)
.set('client_secret',OAUTH_SECRET)
…

Micha
- 906
- 6
- 9
0
votes
1 answer
How should I create app registrations on-demand for my users in Azure B2C?
I have a simple ASPNET Core Razor Pages app + ASPNET Core API:
for example the API just has:
builder.Services
.AddAuthentication(...)
.AddMicrosoftIdentityWebApi()
Razor pages has:
builder.Services
…

Victorio Berra
- 2,760
- 2
- 28
- 53