xpointo/silverstripe-google-authenticator

There is no license information available for the latest version (dev-master) of this package.

Adds Google authentication to SilverStripe

dev-master 2015-12-21 02:08 UTC

This package is not auto-updated.

Last update: 2024-03-16 13:26:49 UTC


README

Introduction

This module enables Google authentication on SilverStripe.

It works by matching the email address obtained from Google login with the email address in the SilverStripe user account list, and logs in the user if there is a match.

Requirements

Installation

via composer

composer require "xpointo/silverstripe-google-authenticator:dev-master"

Configuration

  1. Obtain the Google OAuth Client ID & Client Secret by following the instructions in the Google API Documentation
  2. For the redirect uris setting in the Google OAuth configuration, please include the URL:
  • http://[yoursitename]/GoogleAuthenticatorController/callback
  1. Define the Google OAuth Client ID & Client Secret in your _ss_environment.php or mysite/config.php file.
define('GOOGLE_AUTHENTICATOR_CLIENT_ID', '[google-oauth-client-id]');
define('GOOGLE_AUTHENTICATOR_CLIENT_SECRET', '[google-oauth-client-secret]');