Méthode |
Description |
|
find ( string $username ) : Response | null |
Searches for and returns a single user's information. If no results
are found, null is returned. |
|
followedBy ( ) : Response |
Get the list of users this user is followed by. |
|
follows ( ) : Response |
Get the list of users this user follows. |
|
get ( string $id = 'self' ) : Response |
Get information about a user. |
|
getLikedMedia ( integer | null $count = null, integer | null $maxLikeId = null ) : Response |
Get the list of recent media liked by the owner of the access token. |
|
getMedia ( string $id = 'self', integer | null $count = null, integer | null $minId = null, integer | null $maxId = null ) : Response |
Get the most recent media published by a user. |
|
getRelationship ( string $targetUserId ) : Response |
Get information about the relationship of the owner of the access token
to another user. |
|
requestedBy ( ) : Response |
List the users who have requested this user's permission to follow. |
|
search ( string $query, integer | null $count = null ) : Response |
Get a list of users matching the query. |
|
setRelationship ( string $targetUserId, string $action ) : Response |
Modify the relationship between the owner of the access token and the
target user. |
|