OIDC access user profile

0
I've successfully added Microsoft SSO to my Mendix app using OIDC from the marketplace. I've requested email and profile scope in the login request. How can I access this info after the user is logged in? For example to display the users name on the landing page.
asked
1 answers
0

You should be able to retrieve the name out of the account that is logged in.

 

Or retrieve the entity connected to the account that stores this information?

For example:  you have an entity Person that has an account, you can retrieve this entity and its attribute to fill the users name. 

 

Different approached depening on you Database Scheme

 

 

answered