@Remoteable(path="https://api.twitter.com/1.1/users")
public interface Users
| Modifier and Type | Method and Description |
|---|---|
List<User> |
lookup(UsersLookupRequest parameters)
Returns fully-hydrated user objects for up to 100 users per request, as specified by comma-separated values passed to the user_id and/or screen_name parameters.
|
List<User> |
search(UsersSearchRequest parameters)
Provides a simple, relevance-based search interface to public user accounts on Twitter.
|
User |
show(UsersShowRequest parameters)
Returns a variety of information about the user specified by the required user_id or screen_name parameter.
|
@RemoteMethod(httpMethod="GET",
path="/lookup.json")
List<User> lookup(@QueryIfNE
UsersLookupRequest parameters)
parameters - UsersLookupRequestList[User]@RemoteMethod(httpMethod="GET",
path="/search.json")
List<User> search(@QueryIfNE
UsersSearchRequest parameters)
parameters - UsersSearchRequestList[User]@RemoteMethod(httpMethod="GET",
path="/show.json")
User show(@QueryIfNE
UsersShowRequest parameters)
Copyright © 2018 The Apache Software Foundation. All rights reserved.