0

I'm using GitHub Java API (org.eclipse.egit.github.*) and I have to search for a specific Users to assign Issues.

The problem is that I have to look for proper user by his/her mail and not with userid.

I cannot see any Search method in UserService class... any advice please?

1 Answers1

0

At the moment this library doesn't offer this feature. The only way is to invoke the Search User ReST Endpoint

/api/v3/search/users?q=$MAIL

and pass the email as query parameter.