Hi,
I am facing an issue with federated logins that causes non-first parameters in the return url to get lost, presumably because they are being interpreted as arguments in the outer login URL, rather than in the inner return url.
f_url = users.create_login_url(dest, federated_identity=openid_url)
where
generates
Am I doing something wrong? My workaround for now is to encode the whole urlencoded argument string as one argument, but it would be bad to have to do this everywhere.