Package org.jinstagram.entity.locations

Examples of org.jinstagram.entity.locations.LocationInfo


   * @return a LocationInfo object.
   * @throws InstagramException if any error occurs.
   */
  public LocationInfo getLocationInfo(String locationId) throws InstagramException {
    String apiMethod = String.format(Methods.LOCATIONS_BY_ID, locationId);
    LocationInfo feed = createInstagramObject(Verbs.GET, LocationInfo.class, apiMethod, null);

    return feed;
  }
View Full Code Here

TOP

Related Classes of org.jinstagram.entity.locations.LocationInfo

Copyright © 2018 www.massapicom. 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.