MCPcopy
hub / github.com/authlib/authlib / get_acr

Method get_acr

authlib/oidc/core/models.py:15–18  ·  view source on GitHub ↗

Get the "acr" (Authentication Method Class) value of the authorization code object.

(self)

Source from the content-addressed store, hash-verified

13 raise NotImplementedError()
14
15 def get_acr(self) -> str:
16 """Get the "acr" (Authentication Method Class) value of the authorization code object."""
17 # OPs MUST support requests for specific Authentication Context Class Reference values via the acr_values parameter, as defined in Section 3.1.2. (Note that the minimum level of support required for this parameter is simply to have its use not result in an error.)
18 return None
19
20 def get_amr(self) -> list[str]:
21 """Get the "amr" (Authentication Method Reference) value of the authorization code object.

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected