-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathus_autocomplete_pro_example.rb
58 lines (44 loc) · 1.98 KB
/
us_autocomplete_pro_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
55
56
57
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/us_autocomplete_pro/lookup'
class USAutocompleteProExample
Lookup = SmartyStreets::USAutocompletePro::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)
# auth_id = ENV['SMARTY_AUTH_ID']
# auth_token = ENV['SMARTY_AUTH_TOKEN']
#
# credentials = SmartyStreets::StaticCredentials.new(auth_id, auth_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(['us-autocomplete-pro-cloud'])
.build_us_autocomplete_pro_api_client
# Documentation for input fields can be found at:
# https://smartystreets.com/docs/cloud/us-autocomplete-api
lookup = Lookup.new('1042 W Center')
lookup.add_city_filter('Denver,Aurora,CO')
lookup.add_city_filter('Orem,UT')
lookup.max_results = 5
lookup.prefer_ratio = 3
lookup.source = "all"
# 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|
puts "#{suggestion.street_line} #{suggestion.city}, #{suggestion.state}"
end
end
end
USAutocompleteProExample.new.run