Pull FullContact Ruby Gem Photos?

107 Views Asked by At

https://github.com/fullcontact/fullcontact-api-ruby

I'm trying to use the FullContact API Wrapper for Ruby (it's a gem) instead of the pure REST API. I'm trying to figure out how to grab the person's profile pictures from email address. I know how to get them from the REST API that responds with JSON, but not sure what the example code there is doing.

person = FullContact.person(email: "[email protected]") (pulled from example in the Github linked)

So now how do I retrieve profile pictures from person? What data type is it storing?

1

There are 1 best solutions below

1
On BEST ANSWER

The FullContact gem uses Hashie, and from a call it returns a Hashie::Rash object.

So if you were trying to access photos:

> person = FullContact.person(email: "email")
=> [#<Hashie::Rash contact_info=#<Hashie::Rash family_name=...
> person.photos
=> [#<Hashie::Rash is_primary=true type="facebook" type_id="facebook" type_name="Facebook"...

Hope that helps!