spring-social-google icon indicating copy to clipboard operation
spring-social-google copied to clipboard

Spring Social extension with connection support and an API binding for Google

Results 31 spring-social-google issues
Sort by recently updated
recently updated
newest added

Hi! If `Trying to chase down where the lack of source/javadoc JARs is coming from` is the reason why you set those Gradle properties as `false`, I would advice that...

[gradle caching](https://docs.gradle.org/current/userguide/build_cache.html). Shared caches can reduce the number of tasks you need to execute by reusing outputs already generated elsewhere. This can significantly decrease build times. We can enable this...

[Parallel test execution maxParallelForks](https://docs.gradle.org/current/userguide/performance.html#parallel_test_execution), running multiple test cases in parallel is useful and helpful when there are several CPU cores. According to [Process forking options](https://docs.gradle.org/current/userguide/performance.html#forking_options), Gradle will run all tests...

When I try to use `SocialAuthenticationFilter` from Spring Social Core framework along with `GoogleConnectionFactory` I get next message from Google provider: Authorization Error Error 400: invalid_request Missing required parameter: scope...

Hi, I tried to use the `org.springframework.social.google.api.Google` to fetch user information but in case Google respond a status code in error (say 503 in my case), I get an error...

Hi there. Google Plus API response value seems to have changed Please check this part Goole Plus API -> /v1/people/me `` { .... "emails": [ { "value": "[email protected], "type": "ACCOUNT"...

When a user logs in through Spring social with google, we see the email address coming through ok. If we fetch user data through an established connection, we get no...

As per the guidelines for spring project versioning: https://github.com/spring-projects/spring-build-gradle/wiki/Spring-project-versioning Version structure {number}.{release_type} where {number} is further broken down as {major}.{minor}.{micro}. Examples: 1.0.0.BUILD-SNAPSHOT 1.0.0.M1 1.0.0.M2 1.0.0.RC1 1.0.0.RC2 1.0.0.RELEASE

When using with ConnectController, the scope value is not sent to the Google server (Missing required parameter: scope). At the same time everything is fine with authentication. I use authentication...

I noticed that the `GoogleAutoConfiguration` is not automatically discovered. However auto configuration works when using `@Import(GoogleAutoConfiguration.class)`. As far as I can tell this is because the `org.springframework.boot.autoconfigure.EnableAutoConfiguration` property is not...