I am using the javascript sdk framework to provide custom login functions for a website.
What I would like to do is simply take the registered facebook user unique identifier and then put / extract data to / from the mysql database using the identifier to determine what data is available for the specified user.
However, I really don’t feel that it is very safe. Although I do not store anything sensitive like credit card information, etc., I would prefer it to be as secure as possible.
My fear is that with the fact that javascript is what it is, someone can fake the facebook id and just pull whatever it wants.
I know that php sdk will provide a solid solution to this problem, but I like JavaScript mainly because it is easy to use and I have the basis for creating it (I admit it, I'm lazy).
So my questions are:
Thank!
source
share