-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A few questions on OAuth and Airbyte Enterprise #79
Comments
Following up on this one: I can see now OAuth among the list of supported auth methods here: https://github.com/airbytehq/airbyte-api-python-sdk#per-client-security-schemes However, I can't find any Thanks, |
So, I've stepped thought the SDK code and realised there is no support there yet for the OAuth2 Client Credentials flow. I did notice that the SDK will accept any Bearer token passed into the For example: self.client = airbyte_api.AirbyteAPI(
server_url=server_url,
security=models.Security(client_credentials=access_token)
) This is good, as I was able to retrieve the This works, however other than the code looking very strange, it would be nice to have full OAuth2 support implemented in the SDK - not just the So far, the default Airbyte Enterprise access token validity time is 10 hours, which works for me. |
Hi,
A few questions:
Can this SDK be used against non-Cloud version of Airbyte, i.e. Airbyte OSS and Airbyte Enterprise?
I have noticed there is support for overriding the Airbase API base URL, but I don't see any support for OAuth, as used in the on-premise Airbyte Enterprise version.
Thanks,
Dan
The text was updated successfully, but these errors were encountered: