From b5e21db15291653413e1f45efb8e4fe6169c3066 Mon Sep 17 00:00:00 2001 From: Luis Carrazana <13456333+lluuiissoo@users.noreply.github.com> Date: Fri, 8 Mar 2024 21:49:30 -0500 Subject: [PATCH] Add tenant id to authority parameter Tenant ID is needed in authority parameter to avoid error: "AADSTS50059: No tenant-identifying information found in either the request or implied by any provided credentials. ..." --- parameters.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parameters.json b/parameters.json index baa167a..e52f2e3 100644 --- a/parameters.json +++ b/parameters.json @@ -1,5 +1,5 @@ { - "authority": "https://login.microsoftonline.com/common", + "authority": "https://login.microsoftonline.com/", "client_id": "enter your Application (Client) Id", "scope": ["User.Read"], "endpoint": "https://graph.microsoft.com/v1.0/me"