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 9d3bf23 commit 01a625eCopy full SHA for 01a625e
src/posit/connect/external/connect_api.py
@@ -76,5 +76,8 @@ def get_client(self) -> Client:
76
user_session_token=self._user_session_token,
77
requested_token_type=API_KEY_TOKEN_TYPE,
78
)
79
-
80
- return Client(url=self._url, api_key=credentials.get("access_token"))
+ config = {
+ "url": self._url,
81
+ "api_key": credentials.get("access_token"),
82
+ }
83
+ return Client(**config)
0 commit comments