私は次のコードを使用しています。ダイアログはクロムに表示されますが、クライアントとクライアントのクライアントクロムは表示されませんが、IE と firefox では表示されます。情報はありますか?
<script src='http://connect.facebook.net/en_US/all.js'></script>
<script>
FB.init({appId: "<?=$config['appId'];?>", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
redirect_uri: '#',
link: 'https://www.facebook.com/MyPageName/app_<?=$config['appId'];?>',
picture: 'https://www.abc.com/fbapp/img/welcome.jpg',
to: friendId,// js variable I am fetching from radio button selection
name: 'App Blah Blah',
caption: 'your_caption',
description: 'your_description'
};
function callback(response) {
// I commented out message print in div
// document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
// check weither feedback is valid
if(typeof(response)!='undefined'){
document.location = 'thankyou.php';
}
}
FB.ui(obj, callback);
}
</script>