Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi Team,
We are using Confluence data center version 7.18.2(Personal Access Token Plugin is system plugin). All the users in that version can generate the PAT tokens.
Now we want to know how many users generated PAT tokens in confluence. Can anyone did this before.
Best Regards,
Anil Kumar
Hello @Anil ,
As an option, it can be possible to use TokenAuthenticationManager (https://docs.atlassian.com/ConfluenceServer/javadoc/7.18.2/com/atlassian/confluence/rpc/auth/TokenAuthenticationManager.html) to check token access per each user
def users = userManager.getAllUsers();
def usersWithToken = []
users.foreach(user -> {
if (tokenAuthenticationManager.hasUseConfluencePermission(user)) {
usersWithToken.add(user)
})
usersWithToken
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.