Get the "acr" (Authentication Method Class) value of the authorization code object.
(self)
| 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. |
no outgoing calls
no test coverage detected