Yup our use case is passing in `refresh_token` and...
# singer-tap-development
h
Yup our use case is passing in
refresh_token
and
access_token
to Singer config, and if
access_token
is expired, it uses the token endpoint to fetch a new
access_token
(and updating the config passed in with the new
access_token
)
d
Is your tap updating the config file in place with the new access token? Meltano doesn't currently support that (which doesn't matter to you 🙂). That came up recently in another thread as well. Do you remember that @aaronsteers? Did we file an issue about that?
a
@hassan_syyid The
is_token_valid
property here drives whether
update_access_token
should be called (defined here).
h
Interesting, let me try this out and see what I can do