Sachin
Sachin

Reputation: 561

Unable to validate SCIM endpoints using Microsoft SCIM validator

I have built the sign-on application based on Microsoft's provided sample SCIM code. I am trying to validate my endpoints using scimvalidator located at (https://scimvalidator.microsoft.com/) for Gallery app creation but always getting the below response without any other details:

Please confirm if token is valid and try again. SCIM Endpoints should respond with HTTP OK (200), and SCIM JSON with header application/scim+json.

enter image description here

The irony is same token works when used in Postman.

I am using the below endpoint to get the token and using the same token:

https://<host>/api/Token

And below is actual SCIM endpoint for users:

https://<host>/scim/Users

I have no clue to get more details about the actual error and there are not many resources available about SCIM validations.

Appreciate any help.

Upvotes: 0

Views: 855

Answers (1)

rbrayb
rbrayb

Reputation: 46803

SCIM relies on a users and groups endpoint.

B2C does not support these.

Upvotes: 0

Related Questions