Tôi có mã này giả sử hoạt động, nhưng không hoạt động. Nếu điều này giúp bạn dù sao thì điều đó thật tuyệt.
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='postToFeed(); return false;'><img src="images/fb.png" /></a></p>
<p id='msg'></p>
<script>
FB.init({appId: "338334836292077", status: true, cookie:
true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
redirect_uri:'https://www.facebook.com/cryswashington?fref=ts',
link:'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
</script>
Tôi muốn thêm nút chia sẻ facebook trên trang web của mình, chỉ cần đăng nội dung trang web của tôi lên tường. người muốn chia sẻ nó.
Tôi đã nghiên cứu rất nhiều nhưng không thu được gì. Xin hãy giúp tôi trong việc này.
Cảm ơn trước.