Created
April 10, 2017 02:34
-
-
Save hu2di/d9a57e64200f9e0979968cdff7b047f8 to your computer and use it in GitHub Desktop.
Load Facebook SDK for JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : 'your facebook app id', | |
xfbml : true, | |
version: 'v2.6' | |
}); | |
}; | |
(function(d, s, id) { | |
var js, fjs = d.getElementsByTagName(s) [0]; | |
if (d.getElementById(id)) {return;} | |
js = d.createElement(s); js.id = id; | |
js.src = "//connect.facebook.net/en_US/sdk.js"; | |
fjs.parentNode.insertBefore(js, fjs); | |
} (document, 'script', 'facebook-jssdk')); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment