I've been getting some only semi-predictable behavior from Social Auth (django_social_auth).
In my setup, users click to request a specific, unique resource (let's refer to this unique URL as RESOURCE). When they click the link, I would like them to authenticate first, so, I use the technique that I worked out in the question: How to set a redirection url in a template?. I simply append ?next=RESOURCE to the link generated by {% url socialauth_begin 'twitter' %}. This works nicely, because every requested resource will have a unique URL, so simply setting the value of SOCIAL_AUTH_LOGIN_REDIRECT_URL would be rather problematic.
And, this works... sometimes. It only works for subsequent visits to the app only. If its the first time the user requests a resource from my app, then the ?next=RESOURCE appears to be ignored and the user is instead redirected to SOCIAL_AUTH_LOGIN_REDIRECT_URL as set in settings.py (surprisingly, not SOCIAL_AUTH_NEW_USER_REDIRECT_URL).
So my question is, how can I make every user, whether they are new to the application or not, get redirected to RESOURCE upon successfully authenticating via Twitter?