The authorization server issues the registered client a client identifier -- a unique string representing the registration information provided by the client. The value is extracted from request. :return: string
(self)
| 16 | |
| 17 | @property |
| 18 | def client_id(self) -> str: |
| 19 | """The authorization server issues the registered client a client |
| 20 | identifier -- a unique string representing the registration |
| 21 | information provided by the client. The value is extracted from |
| 22 | request. |
| 23 | |
| 24 | :return: string |
| 25 | """ |
| 26 | return self.data.get("client_id") |
| 27 | |
| 28 | @property |
| 29 | def response_type(self) -> str: |