* @return a MediaCommentsFeed object.
* @throws InstagramException if any error occurs.
*/
public MediaCommentsFeed getMediaComments(String mediaId) throws InstagramException {
String apiMethod = String.format(Methods.MEDIA_COMMENTS, mediaId);
MediaCommentsFeed feed = createInstagramObject(Verbs.GET, MediaCommentsFeed.class, apiMethod, null);
return feed;
}