This gem provides a dead simple way to authenticate to aMember Pro using OmniAuth.
Add this line to your application's Gemfile:
gem 'omniauth-amember_pro'
First, you will need an aMember Pro or two. Once you do that, you can use it like so:
use OmniAuth::Builder do
provider :amember_pro, :auth_url => "https://www.example.org/amember/", :api_key => "xxxxxxxxxxxx"
end
The aMember Pro API requires the username and password to be sent in cleartext, MAKE SURE you use HTTPS to access the API.
The following information is provided back to you for this provider:
{
uid: '12345',
info: {
name: 'Joe Bloggs',
email: '[email protected]',
nickname: 'login'
first_name: 'Joe',
last_name: 'Bloggs',
location: 'Waikato'
},
extra: { raw_info: raw_api_response }
}