ssl support

ssl support
This commit is contained in:
shimingxy
2020-02-06 14:03:35 +08:00
parent d294444352
commit 9bac9464a1
6 changed files with 60 additions and 20 deletions

View File

@@ -46,7 +46,7 @@ public class SocialSignOnProviderService{
authRequest = new AuthTwitterRequest(authConfig);
}else if(provider.equalsIgnoreCase("google")) {
authRequest = new AuthGoogleRequest(authConfig);
}else if(provider.equalsIgnoreCase("Windows")) {
}else if(provider.equalsIgnoreCase("microsoft")) {
authRequest = new AuthMicrosoftRequest(authConfig);
}else if(provider.equalsIgnoreCase("Linkedin")) {
authRequest = new AuthLinkedinRequest(authConfig);
@@ -72,7 +72,7 @@ public class SocialSignOnProviderService{
return ((AuthUser)authResponse.getData()).getUuid();
}else if(provider.equalsIgnoreCase("google")) {
return ((AuthUser)authResponse.getData()).getUuid();
}else if(provider.equalsIgnoreCase("Windows")) {
}else if(provider.equalsIgnoreCase("microsoft")) {
return ((AuthUser)authResponse.getData()).getUuid();
}else if(provider.equalsIgnoreCase("Linkedin")) {
return ((AuthUser)authResponse.getData()).getUuid();