MCPcopy Index your code
hub / github.com/authlib/authlib / client

Function client

tests/flask/test_oauth2/test_jwt_authorization_request.py:81–95  ·  view source on GitHub ↗
(client, db)

Source from the content-addressed store, hash-verified

79
80@pytest.fixture(autouse=True)
81def client(client, db):
82 client.set_client_metadata(
83 {
84 "redirect_uris": ["https://client.test"],
85 "scope": "profile address",
86 "token_endpoint_auth_method": "client_secret_basic",
87 "response_types": ["code"],
88 "grant_types": ["authorization_code"],
89 "jwks": read_file_path("jwks_public.json"),
90 "require_signed_request_object": False,
91 }
92 )
93 db.session.add(client)
94 db.session.commit()
95 return client
96
97
98def register_request_object_extension(

Callers

nothing calls this directly

Calls 2

read_file_pathFunction · 0.90
set_client_metadataMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…