oomphinc/google_oauth

This package is abandoned and no longer maintained. No replacement package was suggested.

Authenticate your Drupal 8 site with Google OAuth

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 12

Watchers: 6

Forks: 6

Type:drupal-module

1.0.0 2017-03-17 19:57 UTC

This package is not auto-updated.

Last update: 2020-01-28 20:03:24 UTC


README

THIS MODULE IS NO LONGER MAINTAINED. Please use the Google Plus Login module on Drupal.org instead. Thank you.

Drupal 8 Google Login

Allows users to log in to your site using their Google account. Creates a new Drupal account when the Google account is not yet known, unless site settings disallow user self-registration. This module requires the google/apiclient composer module, specified in this plugin's composer.json file.

Installation

  • Clone this repository into your site's /modules directory.

  • Install the google/apiclient composer package in your Drupal 8 site with the following command:

$ composer require google/apiclient
  • Create an application in your google developer console. Set up your OAuth consent screen, then generate a credentials set under "Add Credentials > OAuth 2.0 Client ID", type "Web Application".

  • Enter http://your-site.com/google-authenticate into the "Authorized redirect URIs" field, and click "Save".

  • Download the client ID JSON file and save with the name google-oauth-secret.json into your site's private directory, as configured by the file_private_path setting in your site's settings.php.

  • Enable the google_oauth module!