radders
radders

Reputation: 923

Error when obtaining token

I'm trying the sample code NativeClient-Headless-DotNet.sln against my B2C tenant.

When I attempt to execute the command:

result = authContext.AcquireTokenAsync(todoListResourceId, clientId, uc).Result;

using an existing username and password, I get this exception:

InnerException = {"unknown_user_type: Unknown User Type"}

As far as I know, I've set-up all the values correctly in Web and App config (I'm using the same values that I use in my Graph API project, which works OK).

Any ideas why this should happen? Are accounts created with:

userType.type = "userName";

found by this method?

Upvotes: 0

Views: 148

Answers (1)

Chris Padgett
Chris Padgett

Reputation: 14644

Currently, Azure AD B2C doesn't have any direct support for this.

However, work to support for the Resource Owner Password Credentials flow in Azure AD B2C is in-progress.

This new feature will enable a desktop application to collect a user credential and POST it to the B2C tenant for validation.

Upvotes: 1

Related Questions