pub async fn search_slash_users(
configuration: &Configuration,
q: &str,
sort: Option<&str>,
order: Option<&str>,
per_page: Option<i32>,
page: Option<i32>,
) -> Result<SearchUsers200Response, Error<SearchSlashUsersError>>
Expand description
Find users via various criteria. This method returns up to 100 results per page. When searching for users, you can get text match metadata for the issue login, public email, and name fields when you pass the text-match
media type. For more details about highlighting search results, see Text match metadata. For more details about how to receive highlighted search results, see Text match metadata. For example, if you’re looking for a list of popular users, you might try this query: q=tom+repos:%3E42+followers:%3E1000
This query searches for users with the name tom
. The results are restricted to users with more than 42 repositories and over 1,000 followers. This endpoint does not accept authentication and will only include publicly visible users. As an alternative, you can use the GraphQL API. The GraphQL API requires authentication and will return private users, including Enterprise Managed Users (EMUs), that you are authorized to view. For more information, see "GraphQL Queries."