it seems like the query parameters are lost somewhere along the way during /login/twitter, and i have no way to submit the "remember" query param to make the flask backend remember me
well, that's done by PSA internally, when it calls to flask_login's login_user, but yeah, that should do the trick, let me try
cadillac_
the problem with parameters is that the majority of providers will validate the redirect_uri and fail if it's not the same configured on their settings
so parameters must be removed and cannot be passed, only solution was to store them in the session
neferty
doesn't seem to help since it's still not read back :\
cadillac_: i upgraded to that git commit, and that call (backend.strategy.session_get('remember')) still returns None if i do /login/twitter?remember=1 :\ i'll need to investigate what's in there
oh and i have SOCIAL_AUTH_FIELDS_STORED_IN_SESSION = ['remember'] too