I am connecting to Microsoft Api. I authenticate using c# and getting the access token, but is cant seem to get the username that authenticated . These are the fields returned token_type, expires_in, access_token, refresh_token, scope
I make a call to MS Graph using the following:
<authUri>?response_type=code&client_id={ClientId}&scope={Scope}&redirect_uri=
<MyRedirectUrl>
Is there a field i can get which can be decoded to get the user name that logged in via the Microsoft screen to authenticate ?