Get "nonce" value of the authorization code object.
(self)
| 3 | |
| 4 | class AuthorizationCodeMixin(_AuthorizationCodeMixin): |
| 5 | def get_nonce(self): |
| 6 | """Get "nonce" value of the authorization code object.""" |
| 7 | # OPs MUST support the prompt parameter, as defined in Section 3.1.2, including the specified user interface behaviors such as none and login. |
| 8 | raise NotImplementedError() |
| 9 | |
| 10 | def get_auth_time(self): |
| 11 | """Get "auth_time" value of the authorization code object.""" |
no outgoing calls
no test coverage detected