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 32a2e24 commit a17cb72Copy full SHA for a17cb72
clerk/client.py
@@ -16,7 +16,7 @@ def __init__(
16
self, token: str, base_url: str = "https://api.clerk.dev/v1/", timeout_seconds: float = 30.0
17
) -> None:
18
self._session = aiohttp.ClientSession(
19
- headers={"Authorization": f"Bearer {token}"},
+ headers={"Authorization": f"Bearer {token}", "Content-Type": "application/json"},
20
timeout=aiohttp.ClientTimeout(total=timeout_seconds),
21
)
22
self._base_url = base_url
0 commit comments