如何使用 github java API (org.eclipse.egit.github.*) 通过邮件搜索用户
How to use github java API (org.eclipse.egit.github.*) to search for Users by Mail
我正在使用 GitHub Java API (org.eclipse.egit.github.*),我必须搜索特定的用户来分配问题。
问题是我必须通过 his/her mail 而不是 userid 寻找合适的用户。
我在 UserService 中看不到任何搜索方法 class...请问有什么建议吗?
目前这个图书馆不提供这个功能。
唯一的方法是调用搜索用户 ReST 端点
/api/v3/search/users?q=$MAIL
并将电子邮件作为查询参数传递。
我正在使用 GitHub Java API (org.eclipse.egit.github.*),我必须搜索特定的用户来分配问题。
问题是我必须通过 his/her mail 而不是 userid 寻找合适的用户。
我在 UserService 中看不到任何搜索方法 class...请问有什么建议吗?
目前这个图书馆不提供这个功能。 唯一的方法是调用搜索用户 ReST 端点
/api/v3/search/users?q=$MAIL
并将电子邮件作为查询参数传递。