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 7315d1b commit 1f142f6Copy full SHA for 1f142f6
examples/auth.py
@@ -169,7 +169,7 @@ async def get_client(self) -> CriblControlPlane:
169
username=self.username,
170
password=self.password
171
)
172
- token = response.token
+ token = response.result.token
173
174
security = Security(bearer_auth=token)
175
self.client = CriblControlPlane(
examples/example_onprem_auth.py
@@ -36,7 +36,7 @@ async def main():
36
username=ONPREM_USERNAME,
37
password=ONPREM_PASSWORD
38
39
40
print(f"✅ Authenticated with on-prem server, token: {token}")
41
42
# Create authenticated SDK client
0 commit comments