I'm writing a JIRA plugin which needs to present a list of Users to an Admin user. I'm using UserManager to check that the admin user has logged in but the UserManager appears to only have methods for a single user.
I have tried the REST API but using this from within the plugin requires credentials (e.g. BASIC AUTH) to be added to the request header and unless there are 'service' accounts, how can I retrieve the admin user's name and password to inject into the request header.
I'm using JIRA v 7.2.1 and can find no way to just get the list of users. Or do I need to call the database directly with a sql query?
Thanks.
Hi John,
There is an open Suggestion that may provide some hints on how to do this that you can find at JRASERVER-29069. I was able to get the existing users in my instance using the suggestions in JRASERVER-29069:
If JRASERVER-29069 helps please vote on the ticket and let us know.
Cheers,
Branden
Hi Brandon,
I came up with the (dot) trick on my own and I can use the REST API if I paste the url into a browser after I have logged into JIRA. But the issue is I need to call it from Java code (within the plugin) and there's no way I can get the logged in user's credentials so that I can add them to the plugin's request - without them, it returns 0 users.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi John, it's deprecated, but UserManager contains
Collection<ApplicationUser> getAllApplicationUsers()
Or try to use UserSearchService#findUsersAllowEmptyQuery with query passed is null or empty.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Perhaps a better place to ask i at the developers community:
https://community.developer.atlassian.com
Cheers,
Lars, Kantega Single Sign-on
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I usually get the jira-users group and then page through it to get all the users. Not perfect but the best. Using the REST API to do this you have to query for all a*, b*, c*
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Matt,
'I usually get the jira-users group' - how do you do this exactly? What class or service are you using?
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
https://docs.atlassian.com/jira/REST/server/#api/2/group-getGroup in Server but I see that is deprecated since 7.1 in favour of GET /rest/api/2/group/member
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, I see you are writing an add-on so you have access to the whole JIRA Java API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'd start with https://docs.atlassian.com/jira/7.0.7/com/atlassian/jira/bc/user/search/UserSearchService.html and check the findUSer methods and what those string params are for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.