-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathinternational_example.rb
58 lines (48 loc) · 2.43 KB
/
international_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
58
require '../lib/smartystreets_ruby_sdk/static_credentials'
require '../lib/smartystreets_ruby_sdk/shared_credentials'
require '../lib/smartystreets_ruby_sdk/client_builder'
require '../lib/smartystreets_ruby_sdk/international_street/lookup'
class InternationalExample
Lookup = SmartyStreets::InternationalStreet::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-global-plus-cloud'])
.build_international_street_api_client
# Documentation for input fields can be found at:
# https://smartystreets.com/docs/cloud/international-street-api
lookup = Lookup.new()
lookup.inputId = 'ID-8675309' # Optional ID from your system
lookup.geocode = true # Must be expressly set to get latitude and longitude.
lookup.organization = 'John Doe'
lookup.address1 = "Rua Padre Antonio D'Angelo 121"
lookup.address2 = 'Casa Verde'
lookup.locality = 'Sao Paulo'
lookup.administrative_area = 'SP'
lookup.country = 'Brazil'
lookup.postal_code = '02516-050'
# lookup.add_custom_parameter('parameter', 'value')
candidates = client.send_lookup(lookup) # The candidates are also stored in the lookup's 'result' field.
first_candidate = candidates[0]
puts "Input ID: #{first_candidate.input_id}"
puts "Address is #{first_candidate.analysis.verification_status}"
puts "Address precision: #{first_candidate.analysis.address_precision}\n\n"
puts "First Line: #{first_candidate.address1}"
puts "Second Line: #{first_candidate.address2}"
puts "Third Line: #{first_candidate.address3}"
puts "Fourth Line: #{first_candidate.address4}"
puts "Latitude: #{first_candidate.metadata.latitude}"
puts "Longitude: #{first_candidate.metadata.longitude}"
end
end
InternationalExample.new.run