Trying to figure out which is best way to include Login with Facebook in my website.
Currently I am using a png image, onclick calls a php controller. This controller has access to Facebook PHP SDK. Controller talks to facebook api and authenticates the user.
But on web I have checked other way of implementations.
First part is types of facebook Login Button:
- button developed with CSS only
- button developed XFBML
- just a login image
Second part is login implementation:
- Server side authentication (The way I am doing right now)
- Client side authentication. Using JS SDK and then passing session to PHP SDK
- make a call to facebook api via url and then redirecting to php code. something like
https://www.facebook.com/dialog/oauth?client_id=appId&scope=email&redirect_uri=http//localhost/authenticate
