Package org.jinstagram.entity.locations

Examples of org.jinstagram.entity.locations.LocationSearchFeed


    Map<String, String> params = new HashMap<String, String>();

    params.put(QueryParam.LATITUDE, Double.toString(latitude));
    params.put(QueryParam.LONGITUDE, Double.toString(longitude));

    LocationSearchFeed feed = createInstagramObject(Verbs.GET, LocationSearchFeed.class, Methods.LOCATIONS_SEARCH,
        params);

    return feed;
  }
View Full Code Here


        params.put(QueryParam.LATITUDE, Double.toString(latitude));
        params.put(QueryParam.LONGITUDE, Double.toString(longitude));
        params.put(QueryParam.DISTANCE, Integer.toString(distance));

        LocationSearchFeed feed = createInstagramObject(Verbs.GET, LocationSearchFeed.class, Methods.LOCATIONS_SEARCH,
                params);

        return feed;
    }
View Full Code Here

    public LocationSearchFeed searchFoursquareVenue(String foursquareId) throws InstagramException {
        Map<String, String> params = new HashMap<String, String>();

        params.put(QueryParam.FOURSQUARE_V2_ID, foursquareId);

        LocationSearchFeed feed = createInstagramObject(Verbs.GET, LocationSearchFeed.class, Methods.LOCATIONS_SEARCH,
                params);

        return feed;
    }
View Full Code Here

TOP

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

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.