GithubHelp home page GithubHelp logo

hightea / simple-spring-social-google Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 140 KB

Simple Spring Social Google support (only signin and retrieving user profile)

License: Apache License 2.0

Java 100.00%

simple-spring-social-google's Introduction

#Simple Spring social google

Simple Spring Social Google integration simply allowing to connect with a google account.

The user profile informations are retrieved from the google oauth api v2 (https://www.googleapis.com/oauth2/v2/userinfo) meaning that a google plus account is not needed to connect.

How to use

With a GoogleConnectionFactory :

Simply add a ConnectionFactory in a SocialConfigurerAdapter

@Configuration
@EnableSocial
public class SocialSecurityConfig extends SocialConfigurerAdapter  {
    @Override
    public void addConnectionFactories(ConnectionFactoryConfigurer cfConfig, Environment env) {
        cfConfig.addConnectionFactory(new GoogleConnectionFactory(
                googleClientId,
                googleSecret));
    }

    ...
}

You'll have to provide the following scope to the oauth request : https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile

With the provided GoogleAuthenticationService :

You can simply add the GoogleAuthenticationService to an autowired SocialAuthenticationServiceRegistry. This service add the default needed scopes to the oauth request and can also include the access_type=offline parameter.

@Configuration
@EnableSocial
public class SocialSecurityConfig {

    @Autowired
    public void addGoogleConnectionService(SocialAuthenticationServiceRegistry registry) {
        registry.addAuthenticationService(new GoogleAuthenticationService(googleClientId, googleSecret));
        // or if you want offline access
        //registry.addAuthenticationService(new GoogleAuthenticationService(googleClientId, googleSecret).accessOffline(true));
    }

    ...
}

simple-spring-social-google's People

Contributors

hightea avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.