instagrammer.MediaClient.Comments C# (CSharp) Метод

Comments() публичный Метод

Get the full list of comments on the media http://instagram.com/developer/endpoints/comments/#get_media_comments
public Comments ( string mediaId ) : ApiResponse
mediaId string The id of the media object to get the details for
Результат ApiResponse
        public ApiResponse<Comment> Comments(string mediaId)
        {
            string json = GetJSON(string.Format(ApiUrls.COMMENTS_URL, mediaId, base._token), null);
            ApiResponse<Comment> response = json.Deserialize<ApiResponse<Comment>>();

            return response;
        }