-
Notifications
You must be signed in to change notification settings - Fork 62
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
How to update refresh_token in source config? #1019
Comments
Which source are you referring to? |
We have the same issue. We have refresh_token which updates at some time. And we need to update it in the connector source. Can we do it? |
Which connector are you using? |
Custom source for Quickbooks service. So we are developing our own source for Quickbokks API, and it has full OAuth flow. |
Yes, you should be able to do it. I recommend implementing the client in a separate class and explicitly handling the token expiration error in the client. |
My source needs to support OAuth2.0 authentication.
This gives me
access_token
,refresh_token
,expires_in
So when the acess_token is expired, I have to request a new access_token and a new refresh_token.
Do you know how I can update the new tokens in the configuration?
The text was updated successfully, but these errors were encountered: