OmniAuth strategy for FamilySearch OAuth2 API.
There is also a companion strategy for the Identity v2 API (OAuth 1.0a).
Note: FamilySearch requires web apps to use the OAuth 2 API.
Add this line to your application's Gemfile:
gem 'omniauth-familysearch'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-familysearch
use OmniAuth::Builder do
provider :familysearch, ENV['FAMILYSEARCH_DEVELOPER_KEY'], ''
end
# To use the sandbox API
use Omniauth::Builder do
provider :familysearch, ENV['FAMILYSEARCH_DEVELOPER_KEY'], '',
:client_options => { :site => 'https://sandbox.familysearch.org' }
end
Here's an example Auth Hash available in request.env['omniauth.auth']
:
{
"provider" => "familysearch",
"uid" => "MMMM-QY4Y",
"info" => {
"name" => "John Doe",
"email" => "jdoe@example.com"
},
"credentials" => {
"token" => "56421fc9ac",
"secret" => "6f532ad1bb"
},
"extra" => {
"access_token" => "56421fc9ac",
"raw_info" => {
"users" => [
{
"id" => "MMMM-QY4Y",
"contactName" => "John Doe",
"email" => "jdoe@example.com",
"links" => {
"self" => {
"href" => "https://sandbox.familysearch.org/platform/users/current?access_token=abc123"
}
}
}
]
}
}
}
https://familysearch.org/developers/docs/guides/oauth2
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request