*/
public MediaInfoFeed getMediaInfoByShortcode(String shortcode) throws InstagramException {
Preconditions.checkNotNull(shortcode, "shortcode cannot be null.");
String apiMethod = String.format(Methods.MEDIA_BY_SHORTCODE, shortcode);
MediaInfoFeed feed = createInstagramObject(Verbs.GET, MediaInfoFeed.class, apiMethod, null);
return feed;
}