I have a django-based website and am using django-facebook for authentication so our users sign in with their facebook accounts. On my site a user can create a team, and then can invite users to join his team. For a user with a team with id 1, the URL where someone can join his team would be mysite.com/team/1/join/, but obviously one would have to be signed in to join the team. So what I want is for that user to be able to invite his facebook friends and send them some sort of notification saying " wants you to join his team on mysite.com!" or something like that, and then there should be like one of those windows that says ("mysite requests access to the following...") - those windows that facebook displays before you grant an app permission or something - and then the user should be automatically signed into the site via facebook and should be redirected to mysite.com/team/1/join.
I have looked all over django-facebook, as well as at the various dialog options (feed, send, and request) on the Facebook developers site. I don't need specific code here, just direction to a resource that would show me how to do this, or otherwise why what I'm trying to do can't be done and a good work-around solution.