Skip to content

Instantly share code, notes, and snippets.

@reyramos
Created June 4, 2014 18:35
Show Gist options
  • Select an option

  • Save reyramos/4d38d412bdcbfe0e6ad7 to your computer and use it in GitHub Desktop.

Select an option

Save reyramos/4d38d412bdcbfe0e6ad7 to your computer and use it in GitHub Desktop.
Facebook with requirejs
define(['facebook'], function(){
FB.init({
appId: 'YOUR_APP_ID'
, status: true
, cookie: true
, xfbml: true
, version : 'v2.0'
});
FB.getLoginStatus(function(response) {
console.log(response);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment