-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
Description
Thanks for a great library.
I have a process which is very long running, and I am having trouble with auth token expiring. This is despite my calling the refresh_token method.
I think I may have found the problem.
In the constructor the following is called:
# Getting session if self.oauth_version == 'oauth1': self.session = self.oauth.get_session((self.access_token, self.access_token_secret)) else: self.session = self.oauth.get_session(token=self.access_token)
However, I don't think that session variable is getting updated with the new access token.
Does this make sense?
Thanks,
Craig
Reactions are currently unavailable