The OP's Issuer Identifier URL. The value is used to fill the ``iss`` claim that is mandatory in signed userinfo:: def get_issuer(self) -> str: return "https://auth.example" This method must be implemented by developers to support JWT userinfo.
(self)
| 109 | raise NotImplementedError() |
| 110 | |
| 111 | def get_issuer(self) -> str: |
| 112 | """The OP's Issuer Identifier URL. |
| 113 | |
| 114 | The value is used to fill the ``iss`` claim that is mandatory in signed userinfo:: |
| 115 | |
| 116 | def get_issuer(self) -> str: |
| 117 | return "https://auth.example" |
| 118 | |
| 119 | This method must be implemented by developers to support JWT userinfo. |
| 120 | """ |
| 121 | raise NotImplementedError() |
| 122 | |
| 123 | def resolve_private_key(self): |
| 124 | """Return the server JSON Web Key Set. |