Skip to content

Commit d764f28

Browse files
committed
fix: header construction
1 parent 5432a2c commit d764f28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/phase/utils/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def construct_http_headers(token_type: str, app_token: str) -> Dict[str, str]:
7777
Dict[str, str]: The common headers including User-Agent.
7878
"""
7979
return {
80-
"Authorization": f"Bearer {token_type.capitalize()} {app_token}",
80+
"Authorization": f"Bearer {token_type} {app_token}",
8181
"User-Agent": get_user_agent()
8282
}
8383

0 commit comments

Comments
 (0)