MCPcopy
hub / github.com/authlib/authlib / get_client_id

Method get_client_id

authlib/oauth2/rfc6749/models.py:20–29  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 4

get_audiencesMethod · 0.45
get_compatible_claimsMethod · 0.45
get_audiencesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected