Examples of TagSearchFeed


Examples of org.jinstagram.entity.tags.TagSearchFeed

  public TagSearchFeed searchTags(String tagName) throws InstagramException {
    Map<String, String> params = new HashMap<String, String>();

    params.put(QueryParam.SEARCH_QUERY, tagName);

    TagSearchFeed feed = createInstagramObject(Verbs.GET, TagSearchFeed.class, Methods.TAGS_SEARCH, params);

    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.