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 5432a2c commit d764f28Copy full SHA for d764f28
src/phase/utils/network.py
@@ -77,7 +77,7 @@ def construct_http_headers(token_type: str, app_token: str) -> Dict[str, str]:
77
Dict[str, str]: The common headers including User-Agent.
78
"""
79
return {
80
- "Authorization": f"Bearer {token_type.capitalize()} {app_token}",
+ "Authorization": f"Bearer {token_type} {app_token}",
81
"User-Agent": get_user_agent()
82
}
83
0 commit comments