自分のサイトに Facebook 共有を追加し、ユーザーが共有しているかどうかを確認しようとしています。以下は私のコードです。
<script src="http://connect.facebook.net/en_US/all.js"></script>
<input type="button"
onclick="share_me(); return false;"
value="Share"
/>
JavaScript:
FB.init({appId:365897140152061 ,status: true, cookie: true});
function share_me() {
FB.ui({
method: 'feed',
app_id: '365897140152061',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference documentation',
description: 'Using%20Dialogs%20to%20interact%20with%20users.',
message: 'thanks for visting'
},
function(response){
if(response && response.post_id) {
self.location.href = 'http://www.google.com'
}
else {
self.location.href = 'http://www.yahoo.com'
}
});
}
共有すると、エラーが発生したというメッセージが表示されます。後でもう一度やり直してください。どうすればエラーを取り除くことができますか?