Reputation: 475
I have a web application that exposed an SCIM api endpoint. Then I used Azure AD SCIM validator to validate my SCIM endpoint. Azure AD needs a token to be able to connect to my app.
Problem is I generate Oauth 2 token using postman, I use this token in SCIM validator but the token does not work. It always responds as Invalid Credentials.
The token when used with Postman works though.
Anybody encountered same problem? Any help is appreciated.
Upvotes: 2
Views: 1649
Reputation: 475
The way I resolve this is that the endpoint I put in the Scim Validator ends in /Users
example:
http://my-project/scim/v2/Users
in your case, maybe http://[scim endpoint]/Users
Previously, I just supply http://my-project/scim/v2 and I get an Invalid Credentials error....
Upvotes: 0