Get current users profile based on there Id Token payload. This will return null if the the current user is not logged in.
null
const profile = authService.getUserProfile()if (profile) { // Use profile here} Copy
const profile = authService.getUserProfile()if (profile) { // Use profile here}
Get current users profile based on there Id Token payload. This will return
nullif the the current user is not logged in.Example