* @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;
}