C# Class instagrammer.UsersClient

Inheritance: BaseClient
Mostrar archivo Open project: jonezy/instagrammer Class Usage Examples

Public Methods

Method Description
FollowedBy ( string userId ) : ApiResponse

Get a list of users the currently authenticated user is followed by http://instagram.com/developer/endpoints/relationships/#get_users_followed_by

Follows ( string userId ) : ApiResponse

Get a list of users this user follows http://instagram.com/developer/endpoints/relationships/#get_users_follows

RecentMedia ( string userId, string next_max_id, string prev_max_id ) : ApiResponse

Get the most recent media published by a user http://instagram.com/developer/endpoints/users/#get_users_media_recent

Relationship ( string foreignUserId ) : ApiSingleResponse

Get information about the currently authenticated users relationship with another user http://instagram.com/developer/endpoints/relationships/#get_relationship

RequestedBy ( ) : ApiResponse

Get a list of users who have requested to follow the currently authenticated user http://instagram.com/developer/endpoints/relationships/#get_incoming_requests

Search ( string query ) : ApiResponse

Search for a user by name http://instagram.com/developer/endpoints/users/#get_users_search

SelfFeed ( ) : ApiResponse

Show the currently authenticated users feed

SelfFeed ( string next_max_id, string prev_max_id ) : ApiResponse

Show the currently authenticated users feed

User ( ) : ApiSingleResponse

Get basic information about the currently authenticated user http://instagram.com/developer/endpoints/users/#get_users

User ( string userId ) : ApiSingleResponse

Get basic information about the currently authenticated user http://instagram.com/developer/endpoints/users/#get_users

UsersClient ( string token ) : System.Collections.Generic

Method Details

FollowedBy() public method

Get a list of users the currently authenticated user is followed by http://instagram.com/developer/endpoints/relationships/#get_users_followed_by
public FollowedBy ( string userId ) : ApiResponse
userId string The id of the user (self if null)
return ApiResponse

Follows() public method

Get a list of users this user follows http://instagram.com/developer/endpoints/relationships/#get_users_follows
public Follows ( string userId ) : ApiResponse
userId string The id of the user (self if null)
return ApiResponse

RecentMedia() public method

Get the most recent media published by a user http://instagram.com/developer/endpoints/users/#get_users_media_recent
public RecentMedia ( string userId, string next_max_id, string prev_max_id ) : ApiResponse
userId string the id of the user (self if null)
next_max_id string
prev_max_id string
return ApiResponse

Relationship() public method

Get information about the currently authenticated users relationship with another user http://instagram.com/developer/endpoints/relationships/#get_relationship
public Relationship ( string foreignUserId ) : ApiSingleResponse
foreignUserId string The id of the user to get the current users relationship status with
return ApiSingleResponse

RequestedBy() public method

Get a list of users who have requested to follow the currently authenticated user http://instagram.com/developer/endpoints/relationships/#get_incoming_requests
public RequestedBy ( ) : ApiResponse
return ApiResponse

Search() public method

Search for a user by name http://instagram.com/developer/endpoints/users/#get_users_search
public Search ( string query ) : ApiResponse
query string The name of the user to search form
return ApiResponse

SelfFeed() public method

Show the currently authenticated users feed
public SelfFeed ( ) : ApiResponse
return ApiResponse

SelfFeed() public method

Show the currently authenticated users feed
public SelfFeed ( string next_max_id, string prev_max_id ) : ApiResponse
next_max_id string
prev_max_id string
return ApiResponse

User() public method

Get basic information about the currently authenticated user http://instagram.com/developer/endpoints/users/#get_users
public User ( ) : ApiSingleResponse
return ApiSingleResponse

User() public method

Get basic information about the currently authenticated user http://instagram.com/developer/endpoints/users/#get_users
public User ( string userId ) : ApiSingleResponse
userId string the id of the user to get information for (self if null)
return ApiSingleResponse

UsersClient() public method

public UsersClient ( string token ) : System.Collections.Generic
token string
return System.Collections.Generic