Open MichaelBailly opened 4 years ago
When using <img src="...">, we cannot plug custom headers like bearer ones.
<img src="...">
bearer
To be compatible with OIDC:
The route "get my avatar" /api/user/profile/avatar is protected, so it should not be used anymore.
The route to use instead is /api/users/:userId/profile/avatar , which is an unprotected route.
When using
<img src="...">
, we cannot plug custom headers likebearer
ones.To be compatible with OIDC:
The route "get my avatar" /api/user/profile/avatar is protected, so it should not be used anymore.
The route to use instead is /api/users/:userId/profile/avatar , which is an unprotected route.