This plugin provides the capability to authenticate via g+-oauth provider. Depends on grails-spring-security-oauth2.
Owner: matrixcrawler | 1.1.0 | May 8, 2018 | Package | Issues | Source | License: Apache-2.0
dependencies {
compile 'org.grails.plugins:spring-security-oauth2-google:1.1.0'
}
Spring Security OAuth2 Google Plugin
Add a Google OAuth2 provider to the Spring Security OAuth2 Plugin.
Installation
Add the following dependencies in build.gradle
dependencies {
...
compile 'org.grails.plugins:spring-security-oauth2:1.+'
compile 'org.grails.plugins:spring-security-oauth2-google:1.1.+'
...
}
Usage
Add this to your application.yml
grails:
plugin:
springsecurity:
oauth2:
providers:
google:
api_key: 'google-api-key' #needed
api_secret: 'google-api-secret' #needed
successUri: "/oauth2/google/success" #optional
failureUri: "/oauth2/google/failure" #optional
callback: "/oauth2/google/callback" #optional
scopes: "some_scope" #optional, see https://developers.google.com/identity/protocols/googlescopes#monitoringv3
You can replace the URIs with your own controller implementation.
In your view you can use the taglib exposed from this plugin and from OAuth plugin to create links and to know if the user is authenticated with a given provider:
<oauth2:connect provider="google" id="google-connect-link">Google</oauth2:connect>
Logged with google?
<oauth2:ifLoggedInWith provider="google">yes</oauth2:ifLoggedInWith>
<oauth2:ifNotLoggedInWith provider="google">no</oauth2:ifNotLoggedInWith>
License
Apache 2