/facebook_graph_login

Simple login with Javascript's SDK and Graph API.

Primary LanguageHTMLMIT LicenseMIT

Simple LOGIN with Facebook Graph API

I did this with the oficial documentation from Facebook Developers's Documentation and with their Graph API Explorer.

If you want to try it you just have to configure your Developer Account, create a new app and get its App ID then paste it on the init function:

  FB.init({
        appId      : 'YOURAPPID', /* <---- PASTE YOUR APPID HERE */ 
        xfbml      : true,
        version    : 'v2.9'
      });

You have to check its permissions too.

Have fun!