xpointo / silverstripe-google-authenticator
There is no license information available for the latest version (dev-master) of this package.
Adds Google authentication to SilverStripe
Package info
github.com/xpointo/silverstripe-google-authenticator
Type:silverstripe-module
pkg:composer/xpointo/silverstripe-google-authenticator
dev-master
2015-12-21 02:08 UTC
Requires
- php: >=5.3.0
- google/apiclient: 1.1.*
- silverstripe/framework: >=3.1
This package is not auto-updated.
Last update: 2026-03-14 23:42:13 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
- Obtain the Google OAuth Client ID & Client Secret by following the instructions in the Google API Documentation
- For the redirect uris setting in the Google OAuth configuration, please include the URL:
http://[yoursitename]/GoogleAuthenticatorController/callback
- Define the Google OAuth Client ID & Client Secret in your
_ss_environment.phpormysite/config.phpfile.
define('GOOGLE_AUTHENTICATOR_CLIENT_ID', '[google-oauth-client-id]'); define('GOOGLE_AUTHENTICATOR_CLIENT_SECRET', '[google-oauth-client-secret]');