How do I revoke a 3rd party app able to use my Microsoft account for login?

David Thielen 3,231 Reputation points
2025-02-17T22:49:55.7666667+00:00

Hi all;

I am trying to unlink my Microsoft login to an app. I need to do this so I can test it first logging in for my app.

Where can I do this? Everything on the web says go to the privacy tab in my account. There is no privacy tab.

??? - thanks - dave

				var microsoftClientId = configMgr.GetValue<string>("Authentication:Microsoft:ClientId");
				var microsoftClientSecret = configMgr.GetValue<string>("Authentication:Microsoft:ClientSecret");
				// Add authentication services
				if ((!string.IsNullOrEmpty(microsoftClientId)) && !string.IsNullOrEmpty(microsoftClientSecret))
				{
					auth.AddMicrosoftAccount(options =>
						{
							options.ClientId = microsoftClientId;
							options.ClientSecret = microsoftClientSecret;
							options.Scope.Add("User.Read");
							options.Scope.Add("User.ReadBasic.All");
							options.Scope.Add("User.Read.All");
							options.Scope.Add("User.ReadWrite.All");
							options.Scope.Add("Contacts.Read");
							options.Scope.Add("Contacts.ReadWrite");
							options.ClaimActions.MapJsonKey(ClaimTypes.MobilePhone, "mobilephone");
							options.ClaimActions.MapJsonKey(ClaimTypes.StreetAddress, "streetaddress");
							options.ClaimActions.MapJsonKey(ClaimTypes.StateOrProvince, "state");
						});
					oauthInitialized++;
				}

Microsoft Security | Microsoft Identity Manager
0 comments No comments

1 answer

Sort by: Most helpful
  1. Vasil Michev 127.6K Reputation points MVP Volunteer Moderator
    2025-02-18T08:40:09.78+00:00

    You can use this direct link: https://account.microsoft.com/privacy/app-access. Locate the app in question in the list therein and click Details to review the granted permissions and/or remove them.

    Note that this is for Microsoft account, i.e. Outlook.com or similar. If you have a Microsoft 365 account, you need to use https://myapps.microsoft.com/ instead.

    Was this answer helpful?

    1 person found this answer helpful.

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.