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

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

Removes the specified comment from the media http://instagram.com/developer/endpoints/comments/#delete_media_comments
public UnComment ( string mediaId, string commentId ) : ApiSingleResponse
mediaId string The id of the media to remove the comment from
commentId string The id of the comment to rememove
Результат ApiSingleResponse
        public ApiSingleResponse<string> UnComment(string mediaId, string commentId)
        {
            string json = GetJSON(string.Format(ApiUrls.COMMENTS_DELETE_URL, mediaId, commentId, base._token), null, "DELETE");
            ApiSingleResponse<string> response = json.Deserialize<ApiSingleResponse<string>>();

            return response;
        }