jwksUri property

  1. @TagNumber.new(3)
String get jwksUri

URL of the provider's public key set to validate signature of the JWT. See OpenID Discovery. Optional if the key set document:

  • can be retrieved from OpenID Discovery of the issuer.
  • can be inferred from the email domain of the issuer (e.g. a Google service account).

Example: https://www.googleapis.com/oauth2/v1/certs

Implementation

@$pb.TagNumber(3)
$core.String get jwksUri => $_getSZ(2);
  1. @TagNumber.new(3)
set jwksUri (String value)

Implementation

@$pb.TagNumber(3)
set jwksUri($core.String value) => $_setString(2, value);