-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathinternational_autocomplete_example.rb
56 lines (42 loc) · 1.98 KB
/
international_autocomplete_example.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
require '../lib/smartystreets_ruby_sdk/shared_credentials'
require '../lib/smartystreets_ruby_sdk/static_credentials'
require '../lib/smartystreets_ruby_sdk/client_builder'
require '../lib/smartystreets_ruby_sdk/international_autocomplete/lookup'
require '../lib/smartystreets_ruby_sdk/international_autocomplete/client'
class InternationalAutocompleteExample
Lookup = SmartyStreets::InternationalAutocomplete::Lookup
def run
# key = 'Your SmartyStreets Auth Key here'
# referer = 'Your host name here'
# We recommend storing your secret keys in environment variables instead---it's safer!
key = ENV['SMARTY_AUTH_WEB']
referer = ENV['SMARTY_AUTH_REFERER']
credentials = SmartyStreets::SharedCredentials.new(key, referer)
# id = ENV['SMARTY_AUTH_ID']
# token = ENV['SMARTY_AUTH_TOKEN']
# credentials = SmartyStreets::StaticCredentials.new(id, token)
# The appropriate license values to be used for your subscriptions
# can be found on the Subscriptions page of the account dashboard.
# https://www.smartystreets.com/docs/cloud/licensing
client = SmartyStreets::ClientBuilder.new(credentials).with_licenses(['international-autocomplete-v2-cloud'])
.build_international_autocomplete_api_client
# Documentation for input fields can be found at:
# https://smartystreets.com/docs/cloud/us-autocomplete-api
lookup = Lookup.new('Louis')
lookup.country = "FRA"
lookup.locality = "Paris"
# lookup.add_custom_parameter('parameter', 'value')
suggestions = client.send(lookup) # The client will also return the suggestions directly
puts
puts '*** Result with some filters ***'
puts
suggestions.each do |suggestion|
if suggestion.address_text
puts "#{suggestion.entries} #{suggestion.address_text}, #{suggestion.address_id}"
else
puts "#{suggestion.street} #{suggestion.locality}, #{suggestion.country_iso3}"
end
end
end
end
InternationalAutocompleteExample.new.run