This is discussed in this thread but it looks like it hasn't been documented yet.
I'm ultimately trying to create the following Facebook Connect sign-up flow:
User connects to Facebook (such that django-social-auth gets an access token but doesn't yet create a User in Django)
User is taken to a View that I'll write which will have the access token so that I can provide a registration form and include data from Facebook (e.g. "here's your Facebook profile picture, you can optionally upload a new one to use on our site")
User clicks a link to create account and only then is the Django user created.
Right now I'm trying to step-through and reverse-engineer the django-social-auth source to figure out a way to do this, but if someone could show an example or even a high level explanation of a plausible way to do this, that would be awesome.