9mido

Results 83 comments of 9mido

@LanceMeister Are you doing the same exact things as I was above? Maybe you could show us your code and why it is breaking. Maybe you have a different way...

@LanceMeister I was also using whitenoise locally. I would hope that it is not whitenoise causing the problem. But if Heroku is showing the same thing then it probably is...

@bmihelac This is the current behavior when it works: ``` (Pdb) request.COOKIES.get(settings.COOKIE_CONSENT_NAME) 'Stripe=2020-04-01T01:59:44.145456+00:00|Youtube=2020-06-17T02:50:22.415896+00:00|reCAPTCHA=2020-06-30T01:05:55.855499+00:00' (Pdb) settings.COOKIE_CONSENT_NAME 'cookie_consent' (Pdb) parse_cookie_str(request.COOKIES.get(settings.COOKIE_CONSENT_NAME)) {'Stripe': '2020-04-01T01:59:44.145456+00:00', 'Youtube': '2020-06-17T02:50:22.415896+00:00', 'reCAPTCHA': '2020-06-30T01:05:55.855499+00:00'} ``` I could not get pdb...

@bmihelac I am not much of a programmer I am more of a bug finder so I wouldn't have much insight into making a PR for this. Hopefully someone else...

@peterfarrell What if you did something like this: ``` >>> ("pgp_sym_encrypt(%s, '{}', '{}')::%s" % ("foo", "bar")).format(2, 3) "pgp_sym_encrypt(foo, '2', '3')::bar" ``` .format picks up the {}, % picks up the...

Just so others are aware, you can install django-otp-yubikey in settings.py and use the yubikey authenticator app (downloaded from yubikey website) to scan the QR code produced by django-allauth-2fa and...

Updating the link since the old one no longer works: https://django-otp-official.readthedocs.io/en/stable/overview.html#plugins-and-devices We should focus on supporting Webauthn for this issue. I wrote about why in issue #59. It is a...

Maybe these could help someone make a PR: https://stackoverflow.com/questions/58357047/how-to-properly-redirect-from-one-app-to-another-app-in-django https://stackoverflow.com/questions/31334460/urls-py-redirect-the-page-to-another-app https://stackoverflow.com/questions/53430519/django-redirect-from-one-app-to-another-apps-page-django https://stackoverflow.com/questions/28554335/django-redirect-to-a-view-outside-the-app @falc410 Can you share with us your adapter method where you call get_login_redirect_url? I see in the django-allauth...

https://github.com/percipient/django-allauth-2fa/pull/109 This PR would help with this because a user could manually add the secret key to their multiple device OTP applications like google authenticator/andOTP/aegis or multiple yubikey devices. The...

Updating the link since the original one no longer works and adding a few more: https://django-otp-official.readthedocs.io/en/stable/auth.html#authorizing-users https://github.com/django-otp/django-agent-trust https://github.com/django-otp/django-otp-agents