Summary
Need assistance with refreshing token in Bearer mode for Revolut connector
Question
hi, I am trying to build the revolut connector, they use Bearer , everything works fine, except i am not sure how to refresh token in Bearer mode, any help?
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want to access the original thread.
Join the conversation on Slack
["refresh-token", "bearer-mode", "revolut-connector"]
Based on the information provided in the extracts, it seems that Airbyte supports refreshing tokens in OAuth 2.0 flow. However, the specific details on how to refresh a token in Bearer mode for the Revolut connector are not provided in the extracts. In general, the AbstractOauth2Authenticator
in Airbyte’s CDK is used to handle OAuth 2.0 authentication, which includes refreshing tokens. This is mentioned in the Github Issue 18035. However, please note that the specific implementation might vary depending on the API you are working with. In some cases, when the access_token
is refreshed, you also need to save the returned (new) refresh_token
for future refreshes. For more specific guidance, you might want to refer to the Airbyte documentation or the source code of other connectors that use similar authentication methods. If you’re still having trouble, consider reaching out to the Airbyte community on their Slack channel or forum for more specific help.