パッケージ twitter4j.v1

インタフェース PlacesGeoResources


public interface PlacesGeoResources
導入されたバージョン:
Twitter4J 2.1.1
  • メソッドの詳細

    • getGeoDetails

      Place getGeoDetails(String placeId) throws TwitterException
      Find out more details of a place that was returned from the reverseGeoCode(GeoQuery) method.
      This method calls https://api.twitter.com/1.1/geo/id/:id.json
      パラメータ:
      placeId - The ID of the location to query about.
      戻り値:
      details of the specified place
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.1
      関連項目:
    • reverseGeoCode

      ResponseList<Place> reverseGeoCode(GeoQuery query) 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
      パラメータ:
      query - search query
      戻り値:
      places (cities and neighborhoods) that can be attached to a statuses/update
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.1
      関連項目:
    • searchPlaces

      ResponseList<Place> searchPlaces(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
      パラメータ:
      query - search query
      戻り値:
      places (cities and neighborhoods) that can be attached to a statuses/update
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.7
      関連項目: