We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 209b37b commit 7b0815eCopy full SHA for 7b0815e
tests/test_proxy_oauth_endpoints.py
@@ -25,6 +25,9 @@ def proxy_server(monkeypatch):
25
# construct metadata locally instead of performing an HTTP GET.
26
os.environ.setdefault("UPSTREAM_AUTHORIZATION_ENDPOINT", "https://upstream.example.com/authorize")
27
os.environ.setdefault("UPSTREAM_TOKEN_ENDPOINT", "https://upstream.example.com/token")
28
+ os.environ.setdefault("UPSTREAM_JWKS_URI", "https://upstream.example.com/jwks")
29
+ os.environ.setdefault("UPSTREAM_CLIENT_ID", "client123")
30
+ os.environ.setdefault("UPSTREAM_CLIENT_SECRET", "secret123")
31
32
# Deferred import so the env vars above are in effect.
33
from examples.servers.proxy_oauth import server as proxy_server_module
0 commit comments