A method to return client_id of the client. For instance, the value in database is saved in a column called ``client_id``:: def get_client_id(self): return self.client_id :return: string
(self)
| 18 | """ |
| 19 | |
| 20 | def get_client_id(self): |
| 21 | """A method to return client_id of the client. For instance, the value |
| 22 | in database is saved in a column called ``client_id``:: |
| 23 | |
| 24 | def get_client_id(self): |
| 25 | return self.client_id |
| 26 | |
| 27 | :return: string |
| 28 | """ |
| 29 | raise NotImplementedError() |
| 30 | |
| 31 | def get_default_redirect_uri(self): |
| 32 | """A method to get client default redirect_uri. For instance, the |
no outgoing calls
no test coverage detected