-
Notifications
You must be signed in to change notification settings - Fork 19
Description
Scenario & Reproduction Steps
When attempting to authenticate or "list_vault" I am getting the below error. Direct copy below:
"request library compatibility issue, check that the your environment uses compatible versions: reqwest library: error sending request for url ()"}
Initially was getting this with "Client.authenticate", now getting this with Client.Vaults.list()
Unsure if this is coming from AWS & status page that shows 1Password website, but none for Service Acounts
Actual Behavior
client = await Client.authenticate(
auth=env_token,
# Set the following to your own integration name and version.
integration_name="",
integration_version="v1.0.0",
)
returned the above error
now "await account.vaults.list()" where account is the returned Client object.
File "...\Lib\site-packages\onepassword\core.py", line 41, in _invoke
raise_typed_exception(e)
File "...\Lib\site-packages\onepassword\errors.py", line 24, in raise_typed_exception
raise Exception(message)
Exception: request library compatibility issue, check that the your environment uses compatible versions: reqwest library: error sending request for url ()
Expected Behavior
Should be able to get listing of vaults accessible to this service account. (worked on Saturday)
SDK version
0.3.1
Additional information
No response