153154155156157158159160161162163
public static IDToken extractIdToken(String idToken) { if (idToken == null) return null; JWSInput input = new JWSInput(idToken); try { return input.readJsonContent(IDToken.class); } catch (IOException e) { throw new RuntimeException(e); } }