Hi,
I need help. Which permissions (scopes) do I need if I want to do the following?
- Write in the local SQL server database
- Get the username (ex.: HttpContext.User.Identity.Name)
Thank you!
Hi,
I need help. Which permissions (scopes) do I need if I want to do the following?
Thank you!
Hey there @dotaolaoqua !
HttpContext.User.Identity.Name
then the user will need an ID Token. This will be included if the profile
scope is passed in however you are authorizing users. If you are instead referring to using the Management API directly with a Management API access token then you will need an access token with the read:users
scope to hit the get users by id endpoint.Hope this helps!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.