Class: Google::Auth::IDTokens::JwkHttpKeySource
- Inherits:
-
HttpKeySource
- Object
- HttpKeySource
- Google::Auth::IDTokens::JwkHttpKeySource
- Defined in:
- lib/googleauth/id_tokens/key_sources.rb
Overview
A key source that downloads a JWK set.
Constant Summary
Constants inherited from HttpKeySource
HttpKeySource::DEFAULT_RETRY_INTERVAL
Instance Attribute Summary
Attributes inherited from HttpKeySource
Instance Method Summary collapse
-
#initialize(uri, retry_interval: nil) ⇒ JwkHttpKeySource
constructor
Create a key source that downloads a JWT Set.
Methods inherited from HttpKeySource
Constructor Details
#initialize(uri, retry_interval: nil) ⇒ JwkHttpKeySource
Create a key source that downloads a JWT Set.
335 336 337 |
# File 'lib/googleauth/id_tokens/key_sources.rb', line 335 def initialize uri, retry_interval: nil super uri, retry_interval: retry_interval end |