I am using django-facebook to have facebook connect functionality in my site.
Everything is great till now, however I am trying to save the friends list in my db when the signal facebook_user_registered is called using the function get_and_store_friends.
The problem is that current get_open_graph function requires the request object which the view function recieve and I am in facebook_user_registerd and have no access to a request object in that moment.
Is it possible to do in the registartion signal ?