Created
September 4, 2014 22:29
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
<div id="fb-root"></div> | |
<script> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : '351070565012663', // เปลี่ยนเป็น appid ของคุณเอง | |
xfbml : true, | |
version : 'v2.1' | |
}); | |
}; | |
(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')); | |
// ใต้นี่เป็นโค้ด login และโพสลงเฟสบุ๊ค | |
var logintofacebook = function(){ | |
FB.login(function(){ | |
FB.api('/me/feed', 'post', { message: 'สงสัยมีคนแอปชอบเราอยู่แน่ๆเลย'},function(res){ | |
alert("Post Success"); | |
}); | |
},{scope: 'publish_actions'}) | |
} | |
</script> | |
<button onclick="logintofacebook()"> | |
<span>ลงชื่อเข้าใช้ด้วยเฟสบุ๊ค</span> | |
</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment