Hi all, does someone have written a custom connect...
# help-connector-development
l
Hi all, does someone have written a custom connector with OAuth authentication and can share the yaml file? I'm struggling to adapt it to the specific api needs. In the refresh token endpoint Ineed to pass secret_id and secret_key instead of client_id and client_secret..
a
hi, you can overwrite the
build_refresh_request_body
method in your custom component to configure the body of the request sent to the refresh endpoint
l
Hi, but which option of connector I should choose in the generate.sh?
a
i would recommend using
Configuration Based Source
assuming this is the only custom components you would need. Otherwise you can use
Python HTTP API Source
to implement the whole connector in python (difficult to say which is the right answer without knowing the specifics of the API you're integrating with)