Matthias Kestenholz

Results 154 comments of Matthias Kestenholz

Here are some additional details: https://www.jeffgeerling.com/blog/2020/travis-cis-new-pricing-plan-threw-wrench-my-open-source-works Short version: If you're not paying your jobs will run really really slowly.

Here's more data: https://twitter.com/james_hilliard/status/1336081776691843072 https://pbs.twimg.com/media/Eoq3OnWW4AIy7ih?format=jpg&name=large

We're bundling a prehistoric version of jQuery UI for the draggable behavior (1.11.4, from 2015). Maybe a newer version would work?

Yes, that may be a problem. A related problem is that it is also possible to reorder filtered lists. Both may produce unexpected results. Generally, I'm not using orderable admins...

Thanks for the excellent bug report! Could you replace this line https://github.com/matthiask/django-authlib/blob/b5e4d6291602b43129cf38a4b1ea05a99c7641f7/authlib/google.py#L60 by something like this? (You can apply temporary edits directly inside your virtualenv folder, e.g, `venv/lib/python3.10/authlib/google.py` or you...

This is what I'm seeing when I'm printing the token btw: ``` {'access_token': '...', 'expires_in': 3599, 'scope': ['https://www.googleapis.com/auth/userinfo.profile', 'openid', 'https://www.googleapis.com/auth/userinfo.email'], 'token_type': 'Bearer', 'id_token': 'eyJhbGci____.eyJpc3MiO____.c9vlh-lF4qyaDz_____', 'expires_at': 1653326834.23049} ``` I'm wondering if...

Oh, that's right. You could add the following lines e.g. to your `settings.py`: ```python if DEBUG: os.environ["OAUTHLIB_INSECURE_TRANSPORT"] = "1" ``` (See https://github.com/oauthlib/oauthlib/blob/b69fa53fd836dc559aa7fcd78ce075bcbe361629/docs/oauth2/security.rst#environment-variables)

@martarho Good to hear! I already added a note to the documentation. I hope this helps the next person struggling with the same problem. Thanks!

I'm not completely sure what you're asking. Maybe you're referring to this? When hitting the `login` view, the link passed with the `next` query parameter is saved in a cookie....

Ah, I see what you're referring to. Sorry for being dense at first. Yes, that would be a good addition.