Ok, I've already have an exisiting web application. The back end is a rest interface. Initially, to login, the user had to register and then login with his credentials. But i want to integrate the facebook login;
so in my rest Interface i'm adding two more methods
registerfbUser:registers the user accountloginfbUser:allows a user to use his facebook account to login into the system after
getting registered
I've been able to use facebook connect and the graph api to connect to facebook. Now, the loginfbUser will be called using ajax and details will be provided in the JSON format.
My problem is that what information should i pass to the method loginfbUser to authenticate the facebook user. I cannot pass only the facebook id, because the api will be open and thus anybody will be able to make a POST request with the facebook id in json format