Hi,
I am using an Angular SPA with the lock login page to generate an auth_token which is then passed to my back-end .net core API. This all works great I am able to authenticate.
Say I want to relate my user who is logged in to a record in the back-end so that they can only see records relating to them, what is the recommended way of doing this?
How do I use properties of the logged in user within .net core such as first name or last name?