Tweak text for loadUserProfile

This commit is contained in:
Stian Thorgersen 2017-03-30 09:10:37 +02:00
parent 052a34123f
commit 08ca85f19e

View file

@ -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)