The project is in a healthy, maintained state
OmniAuth Oauth2 strategy for WhoPlusYou allowing you to connect to a specific WhoPlusYou instance.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Gem Version CircleCI

OmniAuth WhoPlusYou

Strategy to authenticate with WhoPlusYou via OAuth2 in OmniAuth.

Installation

Add to your Gemfile:

gem 'omniauth-whoplusyou'

Then bundle install.

WhoPlusYou API Setup

Contact your WhoPlusYou instance administrator to be added access to the Developer Portal.

  • Visit the API Keys page to find your Client ID and Client Secret.

  • Set your Client Domains as needed with the exact redirect URI your application supports. Note that WhoPlusYou does not support any sort of wild card paths, so this must be an exact and full path to your reidrect URI.

Usage

For additional information, refer to the OmniAuth wiki.

Rails

Here's an example for adding the middleware to a Rails app in config/initializers/omniauth.rb:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :whoplusyou, 
  		   ENV['WHOPLUSYOU_CLIENT_ID'], 
  		   ENV['WHOPLUSYOU_CLIENT_SECRET'],
  		   client_options: {
             site: 'https://myinstance.whoplusyou.com',
           },
           redirect_uri: Rails.application.routes.url_helpers.my_integration_response_url
end

You can now access the OmniAuth WhoPlusYou OAuth2 URL: /auth/whoplusyou

Configuration

You can configure several options, which you pass in to the provider method via a hash:

  • scope: A space-separated list of permissions you want to request from the user.

  • redirect_uri: Override the redirect_uri used by the gem. Note this must match exactly what you specified in the WhoPlusYou Developer Portal in your Client Domains setting.

  • name: The name of the strategy. The default name is whoplusyou but it can be changed to any value, for example wpy. The OmniAuth URL will thus change to /auth/wpy and the provider key in the auth hash will then return wpy.

License

Copyright (C) 2023 Jordan Ell. See LICENSE for details.