Examples of MediaCommentsFeed


Examples of org.jinstagram.entity.comments.MediaCommentsFeed

   * @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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.