Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public final long getExpirationTimeMilliseconds() {
* the public certificate endpoint.</li>
* <li>The current time against the issued at and expiration time (allowing for a 5 minute clock
* skew).</li>
* <li>The issuer is {@code "accounts.google.com"}.</li>
* <li>The issuer is {@code "https://accounts.google.com"}.</li>
* </ul>
*
* @param googleIdToken Google ID token
Expand Down Expand Up @@ -241,7 +241,7 @@ public Builder(HttpTransport transport, JsonFactory jsonFactory) {
*/
public Builder(GooglePublicKeysManager publicKeys) {
this.publicKeys = Preconditions.checkNotNull(publicKeys);
setIssuer("accounts.google.com");
setIssuer("https://accounts.google.com");
}

/** Builds a new instance of {@link GoogleIdTokenVerifier}. */
Expand Down