All Downloads are FREE. Search and download functionalities are using the official Maven repository.

twitter4j.api.PlacesGeoResources Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/*
 * Copyright 2007 Yusuke Yamamoto
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package twitter4j.api;

import twitter4j.*;

/**
 * @author Yusuke Yamamoto - yusuke at mac.com
 * @since Twitter4J 2.1.1
 */
public interface PlacesGeoResources {
    /**
     * Find out more details of a place that was returned from the {@link PlacesGeoResources#reverseGeoCode(twitter4j.GeoQuery)} method.
     * 
This method calls https://api.twitter.com/1.1/geo/id/:id.json * * @param placeId The ID of the location to query about. * @return details of the specified place * @throws TwitterException when Twitter service or network is unavailable * @see GET geo/id/:place_id | Twitter Developers * @since Twitter4J 2.1.1 */ Place getGeoDetails(String placeId) throws TwitterException; /** * Search for places (cities and neighborhoods) that can be attached to a statuses/update. Given a latitude and a longitude, return a list of all the valid places that can be used as a place_id when updating a status. Conceptually, a query can be made from the user's location, retrieve a list of places, have the user validate the location he or she is at, and then send the ID of this location up with a call to statuses/update.
* There are multiple granularities of places that can be returned -- "neighborhoods", "cities", etc. At this time, only United States data is available through this method.
* This API call is meant to be an informative call and will deliver generalized results about geography. *
This method calls https://api.twitter.com/1.1/geo/reverse_geocode.json * * @param query search query * @return places (cities and neighborhoods) that can be attached to a statuses/update * @throws TwitterException when Twitter service or network is unavailable * @see GET geo/reverse_geocode | Twitter Developers * @since Twitter4J 2.1.1 */ ResponseList reverseGeoCode(GeoQuery query) throws TwitterException; /** * Search for places that can be attached to a statuses/update. Given a latitude and a longitude pair, an IP address, or a name, this request will return a list of all the valid places that can be used as the place_id when updating a status. *
Conceptually, a query can be made from the user's location, retrieve a list of places, have the user validate the location he or she is at, and then send the ID of this location with a call to statuses/update. *
This is the recommended method to use find places that can be attached to statuses/update. Unlike geo/reverse_geocode which provides raw data access, this endpoint can potentially re-order places with regards to the user who is authenticated. This approach is also preferred for interactive place matching with the user. *
This method calls https://api.twitter.com/1.1/geo/search.json * * @param query search query * @return places (cities and neighborhoods) that can be attached to a statuses/update * @throws TwitterException when Twitter service or network is unavailable * @see GET geo/search | Twitter Developers * @since Twitter4J 2.1.7 */ ResponseList searchPlaces(GeoQuery query) throws TwitterException; /** * Locates places near the given coordinates which are similar in name. *
Conceptually you would use this method to get a list of known places to choose from first. Then, if the desired place doesn't exist, make a request to post/geo/place to create a new one. *
The token contained in the response is the token needed to be able to create a new place. *
This method calls https://api.twitter.com/1.1/geo/similar_places.json * * @param location The latitude and longitude to search around. * @param name The name a place is known as. * @param containedWithin optional: the place_id which you would like to restrict the search results to. Setting this value means only places within the given place_id will be found. * @param streetAddress optional: This parameter searches for places which have this given street address. There are other well-known, and application specific attributes available. Custom attributes are also permitted. Learn more about Place Attributes. * @return places (cities and neighborhoods) that can be attached to a statuses/update * @throws TwitterException when Twitter service or network is unavailable * @since Twitter4J 2.1.7 */ ResponseList getSimilarPlaces(GeoLocation location, String name, String containedWithin, String streetAddress) throws TwitterException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy