Tweak text for loadUserProfile
This commit is contained in:
parent
052a34123f
commit
08ca85f19e
1 changed files with 13 additions and 1 deletions
|
@ -314,7 +314,19 @@ Returns true if the token has the given role for the resource (resource is optio
|
|||
|
||||
Loads the users profile.
|
||||
|
||||
Returns promise to set functions to be invoked on success or error.
|
||||
Returns promise to set functions to be invoked if the profile was loaded successfully, or if the profile could not be
|
||||
loaded.
|
||||
|
||||
For example:
|
||||
|
||||
[source,javascript]
|
||||
----
|
||||
keycloak.loadUserProfile().success(function(profile) {
|
||||
alert(JSON.stringify(test, null, " "));
|
||||
}).error(function() {
|
||||
alert('Failed to load user profile');
|
||||
});
|
||||
----
|
||||
|
||||
====== isTokenExpired(minValidity)
|
||||
|
||||
|
|
Loading…
Reference in a new issue