Hi all, What is the correct approach to develop an...
# ask-community-for-troubleshooting
a
Hi all, What is the correct approach to develop an HTTP API source connector (using the Python CDK) with SSL verification disabled? Based on my understanding on the docs, I can manually specify this is in the
check_connection
function using
verify=False
(if I use
requests
). But, what about the stream class (which extends
HttpStream
)? How can I do the same there as there is no explicit
requests
call? Apologies if it is a basic question but I couldn't find an answer online. Thank you.
1
a
you can overwrite
request_kwargs
to return
{"verify": False}
. the param should get propagate through https://github.com/airbytehq/airbyte/blob/master/airbyte-cdk/python/airbyte_cdk/sources/streams/http/http.py#L292
1
a
Thanks a ton! @Alexandre Girard (Airbyte)