Vlarabor
Vlarabor
Looking at the docs of [URLObject](https://urlobject.readthedocs.io/en/latest/quickstart.html) just using `base_url.relative()` in the [flask_dance_consumer.requests.OAuth2Session.request()](https://github.com/singingwolfboy/flask-dance/blob/main/flask_dance/consumer/requests.py#L189-L191) function does not work for all cases. Look at the following example from the documentation: ```python >>> url...
So i had some time to try and get some more debugging info. As it seems, Flask Dance detects that the currently stored access token is expired and tries and...
I just added the changes to reflect the `twitch_bp` by adding the following lines to `strava.py` which unfortunately did not solve the problem. ```python strava_bp.auto_refresh_url = strava_bp.token_url strava_bp.auto_refresh_kwargs = {...
I'm not sure if I should open a second issue for this, but this is my current workaround solution for the `IntegrityError`caused by the the `self.storage.set(self, _token)` call in line...