* @return a MediaCommentResponse feed.
* @throws InstagramException if any error occurs.
*/
public MediaCommentResponse deleteMediaCommentById(String mediaId, String commentId) throws InstagramException {
String apiMethod = String.format(Methods.DELETE_MEDIA_COMMENTS, mediaId, commentId);
MediaCommentResponse feed = createInstagramObject(Verbs.DELETE, MediaCommentResponse.class, apiMethod, null);
return feed;
}