I use the pyfacebook module for Django to implement facebook Connect for one of my sites, I do not use the local User object, because I only want to use Facebook to login.
I understand that I cannot access the request object from the save method in the Django form, so how can I access the facebook object provided by the provided middleware?
I want to bind facebook UID users to an object created from the form, I could add it as a hidden field in the form, but then people could just change it so that it seems that the question came from someone else.
What is the best way to pass this uid to the save () method?
source share