Open marfrede opened 1 year ago
Hi @marfrede, as you have stated we don't have a method implemented for refresh_token
. Other developers have found solutions around this. See this discussion https://github.com/Asana/python-asana/issues/108 for more info.
We are currently evaluating approaches to generating our python library so it can be kept up to date and modern. If you have any suggestions or feature requests let us know.
How is it possible to refresh my token when I already haven my
asana.Client
(oauth)In the fist step I gained the access_token via the method fetch_token (
asana.Client.session.fetch_token
) Then I found the methods refresh_token fromrequest_oauthlib.OAuth2Session
. This method though is not implemented by the child classasana.AsanaOAuth2Session
So
asana.AsanaOAuth2Session
implementsfetch_token
but notrefresh_token
. Why is that and how can I refresh the token then??