この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hi Team,
I need to get current logged in user information using JavaScript. For this I need to get user's id. Please let me know how can I get the user id so that I can pass it to a servlet and get the user's info.
Thanks,
AryA.
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
@Dinu,
"
--
表示
返信
いいね!の合計
See this older community thread: https://forums.adobe.com/thread/1246415
表示
返信
いいね!の合計
You can get the current logged in user Id using the following code -
CQ.User.getCurrentUser().getUserID();
表示
返信
いいね!の合計
Just make sure "CQ" object does exist in a publish environment as well.
表示
返信
いいね!の合計
Hi
I have found stackoverflow answer to do the same:-
In JSP / Java you can adapt your resource to UserManager class and get the current user or list down all the users and groups as per your requirement.
Session session = resourceResolver.adaptTo(Session.class); UserManager userManager = resourceResolver.adaptTo(UserManager.class); /* to get the current user */ Authorizable auth = userManager.getAuthorizable(session.getUserID()); /* to get the property of the authorizable. Use relative path */ Value[] names = auth.getProperty("./profile/familyName"); /* to get the groups it is member of */ Iterator<Group> groups = auth.memberOf();
To list all the users or groups, you can use findAuthorizables() method available in the UserManger.
You can also obtain the User info in JS using CQ.User.getCurrentUser()
which would return an instance of the current User, with which you can access the user's properties.
I hope this would come as some help.
Thanks and Regards
Kautuk Sahni
表示
返信
いいね!の合計
Hi Kunal,
It is not working in normal jQuery script. I'm getting "CQ is undefined" error. It works fine in listeners script. Please let me know the dependencies.
Thanks,
AryA.
表示
返信
いいね!の合計
@Dinu,
"
--
表示
返信
いいね!の合計
Hi Jitendra,
I'm able to get the user id now. Will it create any problem if I include this (cq.widgets) as a dependency to my client library?
Thanks,
AryA.
表示
返信
いいね!の合計