Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 951 Bytes

README.md

File metadata and controls

46 lines (33 loc) · 951 Bytes

OmniAuth aMember Pro Strategy

This gem provides a dead simple way to authenticate to aMember Pro using OmniAuth.

Installation

Add this line to your application's Gemfile:

gem 'omniauth-amember_pro'

Usage

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                      

WARNING!

The aMember Pro API requires the username and password to be sent in cleartext, MAKE SURE you use HTTPS to access the API.

Auth Hash Schema

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 }
}