Skip to content

Instantly share code, notes, and snippets.

@joost
Last active August 29, 2015 14:02
Show Gist options
  • Save joost/e149404f645f33ba1939 to your computer and use it in GitHub Desktop.
Save joost/e149404f645f33ba1939 to your computer and use it in GitHub Desktop.
Super Simple Google Places API Ruby Client
# 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
@kevin521
Copy link

I'm getting the following error when I try to run this:
undefined method `assert_required_keys' for {:key=>"#my API key is here"}:Hash

So then I take that line out, and then I get this error:
missing dependency for FaradayMiddleware::Mashify: cannot load such file -- hashie/mash

Have you ran into this issue? I'm running ruby 2.1.0, with Rails 4.0.3

@joost
Copy link
Author

joost commented Jun 25, 2014

@kevin521 you can remove the line. I guess it is my custom core extension.
Install the 'hashie' gem and require it before playing.

@joost
Copy link
Author

joost commented Feb 5, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment