MCPcopy
hub / github.com/authlib/authlib / client_id

Method client_id

authlib/oauth2/rfc6749/requests.py:18–26  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected