Examples of TagInfoFeed


Examples of org.jinstagram.entity.tags.TagInfoFeed

   * @return a TagInfoFeed object.
   * @throws InstagramException if any error occurs.
   */
  public TagInfoFeed getTagInfo(String tagName) throws InstagramException {
    String apiMethod = String.format(Methods.TAGS_BY_NAME, tagName);
    TagInfoFeed feed = createInstagramObject(Verbs.GET, TagInfoFeed.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.