-
-
Notifications
You must be signed in to change notification settings - Fork 91
Open
Labels
Description
Using SSO with Microsoft Entra ID (Azure AD), I am able to login and everything works as expected, with the exception of the profile picture missing from the main control bar and the user profile.
It appears that the UI correctly tries to retrieve the picture from https://graph.microsoft.com/v1.0/me/photo/$value
, which is returned in the userinfo graph endpoint; however, that request returns a 401
as the request did not contain any kind of auth token. This makes sense as it was the homer API which holds the tokens and exposes a different auth token to the UI.
Perhaps a proxy endpoint for this request is required in the API and, if there is no valid response, use the user's initials as the profile picture?