I am planning to use Facebook registration to allow people to use their Facebook credentials to register/login to my site.
The details can be seen here: http://developers.facebook.com/docs/plugins/registration/
The documentation says that when a user logs in to Facebook, Facebook will fire an onLogin event and I can use this event to login the user to my site.
My question is, if I tell my website to login the user when the event is fired, isn't it easy for an attacker to login as any user by just spoofing my javascript call ?
What is the general best practice to do in this case? Or is this thing inherently not secure?
(Or is there any other service I should be using for login/registration rather than the Facebook registration plugin)?