MCPcopy
hub / github.com/authlib/authlib / get_issuer

Method get_issuer

authlib/oidc/core/userinfo.py:111–121  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

__call__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected