MInor change on google token validator
This commit is contained in:
parent
b587a2d151
commit
6fa9962d8e
|
@ -20,7 +20,10 @@ public class GoogleTokenValidator implements TokenValidator {
|
||||||
private static final JacksonFactory jacksonFactory = new JacksonFactory();
|
private static final JacksonFactory jacksonFactory = new JacksonFactory();
|
||||||
private static final HttpTransport transport = new NetHttpTransport();
|
private static final HttpTransport transport = new NetHttpTransport();
|
||||||
|
|
||||||
private static final List<String> clientIDs = Arrays.asList("1010962018903-glegmqudqtl1lub0150vacopbu06lgsg.apps.googleusercontent.com");
|
private static final List<String> clientIDs = Arrays.asList(
|
||||||
|
"1010962018903-glegmqudqtl1lub0150vacopbu06lgsg.apps.googleusercontent.com",
|
||||||
|
""
|
||||||
|
);
|
||||||
|
|
||||||
private GoogleIdTokenVerifier verifier = null;
|
private GoogleIdTokenVerifier verifier = null;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue