I am developing an application in Ionic3 that uses a ThemeableBrowser to show the login of IdentityServer4 , my question is that for the login I use the authorize endpoint (/ connect / authorize) , load the login well and at least it serves me for what I want.
However, to show the IdentityServer4 profile of the user logged in previously I do not know if there is a user interface as such to show the user's information, since the userinfo endpoint (connect / userinfo) that provides Identityserver, the only thing it returns is a JSON object with the user's information, and it is also necessary to pass a Bearer Authentication Header with the access_token obtained after login.
The use of ThemeableBrowser to display the user profile is mandatory.
Does anyone have any idea how to do it?