We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e88ee61 commit c597045Copy full SHA for c597045
build.gradle
@@ -20,6 +20,10 @@ configurations {
20
}
21
22
23
+configurations.all {
24
+ exclude group: 'commons-logging', module: 'commons-logging'
25
+}
26
+
27
repositories {
28
mavenCentral()
29
src/main/java/apptive/team5/oauth2/dto/GoogleOAuth2Rep.java
@@ -19,11 +19,11 @@ public String getProviderId() {
19
@Override
public String getUsername() {
- return payload.getEmail();
+ return (String) payload.get("name");
public String getEmail() {
- return (String) payload.get("name");
+ return payload.getEmail();
0 commit comments