Skip to content

This plugin provides the capability to authenticate via github oauth provider. Depends on grails-spring-security-oauth2.

License

Notifications You must be signed in to change notification settings

rpalcolea/grails-spring-security-oauth2-github

Repository files navigation

Spring Security OAuth2 Github Plugin

Build Status Download Slack Signup

Add a Github OAuth2 provider to the Spring Security OAuth2 Plugin by @MatrixCrawler (Johannes Brunswicker).

Installation

Add the following dependencies in build.gradle

dependencies {
...
    compile 'org.grails.plugins:spring-security-oauth2:1.+'
    compile 'org.grails.plugins:spring-security-oauth2-github:1.0.+'
...
}

Usage

Add this to your application.yml

grails:
    plugin:
        springsecurity:
            oauth2:
                providers:
                    github:
                        api_key: 'github-client-id'             #needed
                        api_secret: 'github-client-secret'      #needed
                        successUri: "/oauth2/github/success"    #optional
                        failureUri: "/oauth2/github/failure"    #optional
                        callback: "/oauth2/github/callback"     #optional

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="github" id="github-connect-link">Github</oauth2:connect>

Logged with Github?
<oauth2:ifLoggedInWith provider="github">yes</oauth2:ifLoggedInWith>
<oauth2:ifNotLoggedInWith provider="github">no</oauth2:ifNotLoggedInWith>

License

Apache 2

Sponsors

Alt text

YourKit supports open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of YourKit Java Profiler and YourKit .NET Profiler, innovative and intelligent tools for profiling Java and .NET applications.

About

This plugin provides the capability to authenticate via github oauth provider. Depends on grails-spring-security-oauth2.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages