Last active
August 29, 2015 14:02
-
-
Save joost/e149404f645f33ba1939 to your computer and use it in GitHub Desktop.
Super Simple Google Places API Ruby Client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This gist is turned into a gem: https://github.com/joost/google_places_api | |
require 'hashie' | |
require 'faraday' | |
require 'faraday_middleware' | |
# Created our own very simple Google Places API client since the google_places gem | |
# is returning incorrect results. | |
# Usage: | |
# client = GooglePlacesClient.new(key: API_KEY) | |
# response = client.get('textsearch', query: 'something') | |
# ref = response.body.results.first.reference | |
# client.get('details', reference: ref).body.result.name | |
# client.get('nearbysearch', name: 'optional', language: 'nl', keywords: 'optional', location: "#{lat},#{lng}", radius: 100) | |
class GooglePlacesClient | |
def initialize(options) | |
@key = options[:key] | |
@sensor = options[:sensor] || false | |
end | |
API_URL = "https://maps.googleapis.com/maps/api/place/" | |
def connection | |
@connection ||= Faraday.new(url: API_URL, params: {key: @key, sensor: @sensor}) do |conn| | |
conn.adapter Faraday.default_adapter | |
conn.response :mashify | |
conn.response :json | |
end | |
end | |
# Usage: | |
# get('some_path', params: 'if you need') | |
def get(path, params = {}) | |
connection.get("#{path}/json", params) | |
rescue Faraday::ParsingError | |
nil | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@kevin521 you can remove the line. I guess it is my custom core extension.
Install the 'hashie' gem and require it before playing.