Questions tagged [azure-app-registration]

88 questions
0
votes
1 answer

How to authorise to MS Project ODATA API by using ClientCredentialFlow?

I am using the Python msal package and the ClientCredentialFlow when trying to authenticate to the MS-project odata API using following script: import requests import msal def get_access_token(): # Set your Azure AD tenant ID, client ID…
ediordna
  • 300
  • 2
  • 15
0
votes
1 answer

Multi-Tenant Teams App requires admin approval in tenant 2 but not tenant 1

I have developed a multi-tenant Microsoft Teams tab app that is registered in Tenant 1 (where it was initially created). Interestingly, the app doesn't require admin approval in Tenant 1, but it does require admin approval when deployed to Tenant 2.…
0
votes
1 answer

How to authenticate to MS Graph using JavaScript?

I'm trying to develop an automation using Graph API and JavaScript. I have an app registration in Azure Portal with necessary permissions. How can I authenticate in my JavaScript automation using tenant ID, client ID and client secret and call Graph…
0
votes
0 answers

Authentication_MissingOrMalformed when calling addKey on an App Registration

I've been attempting for days to test using this API to rotate a key. But regardless out how I do it, I always end up with "Authentication_MissingOrMalformed" and Error code 401. Is there something else I need to do? I first created an Azure AD App…
0
votes
1 answer

how to grant an API permission in C# via graph to an AppReg

In C# on .NET Core 7, I use MS Graph to add an appreg (App registrations) to Azure. When I create this appreg, I add the "client secret" and an API Permission to it in the same call. Everything works perfectly well, I see my appreg in Azure with its…
0
votes
1 answer

Invoking Power Automate Desktop bot using Web API

I am trying to invoke a Power Automate Desktop bot using web api, as per the instructions provided in the below article. https://learn.microsoft.com/en-us/power-automate/developer/desktop-flow-public-apis I created an App registration with…
0
votes
1 answer

Azure App Registration Not giving New Refresh Token or Scope because of Permission Error

We are configuring an azure app registration through a service account and believe that we have the correct permissions for the service account yet when the logic app is run an error is thrown when pulling groups from O365 for not having the correct…
0
votes
2 answers

Why localhost redirect URI for Azure AD desktop app / MSAL, and how does it work?

I have seen it recommended to use http://localhost as the redirect URI for Azure AD app registrations for desktop apps. Can anyway explain why localhost is used, how this actually works (technical details), and what makes this secure? For example,…
BateTech
  • 5,780
  • 3
  • 20
  • 31
0
votes
1 answer

App roles & groups claim (emitted as roles) in Azure Active Directory App

I have registered an Azure AD Application with an App role called read. User Principal If a user principal is assigned to the app role read and the groups claim (emit_as_roles enabled) is added in the Azure AD App, only the AAD security groups show…
0
votes
1 answer

Azure - Is it possible to setup environment variables with Enterprise Applications?

In our project, we do not use App Registrations, instead we use Enterprise applications in Azure. I am trying to access a secret from Azure Key Vault in local development(.NET Core), which requires DefaultAzureCredential which in turn uses…
0
votes
1 answer

Incorrect date and time is showing in SAML response

I need advisory support on my issue with registered application on AAD. When we registered the app with AAD for SSO using SAML it was working fine initially. But now it throws error whenever we tried to login to that app using AAD user cred. The…
0
votes
2 answers

How do I export existing azure application registration as terraform code?

I have two azure application registrations which are used for authentication & authorization. I would like to know how I can export them into terraform code with keeping their settings and configurations. I have been checking Azure/Aztfexport…
0
votes
1 answer

Azure AD app registration for OAuth Code Grant flow

I am trying to implement Oauth Code Grant flow using Azure AD as the authorization server. Followed these steps to implement the Code grant flow. Created Azure AD app with the redirect_uri where I like to get the auth token. 2.App permissions as…
jack
  • 803
  • 3
  • 15
  • 26
0
votes
1 answer

Connect azure key vault getting error is "System.Net.Http.HttpRequestException: ' in C#

Error message:: The SSL connection could not be established, see inner exception.'SocketException: An established connection was aborted by the software in your host machine. This is the code used to connect to Azure Keyvault from local…
0
votes
2 answers

Access from Azure Function to Blob Storage on behalf of App Registration

I want to access the Blob Storage from an Azure Function. I have multiple Azure Functions and want to manage all permissions at one place. Therefore I have created an App-Registration AR1. This App-Registration I gave user_impersonation permission…