私は Facebook アプリケーションを開発しています。アプリ ユーザーにプライベート メッセージを送信しようとしていますが、次回はポップアップが表示されて消えます。https://developers.facebook.com/docs/reference/dialogsからこのスクリプトを使用しました。 /send/、リンク (以下で指定) を 2 ~ 3 回クリックするとポップアップが表示されます。
FB.init({
appId: '<?=$this->facebook->getAppID()?>',
xfbml: true,
cookie: true
});
function send_message(user_id) {
FB.ui({
to: user_id,
method: 'send',
name: 'name',
link: 'http://www.something.com'
});
}
リンクは、
<a href="" onclick="send_message('<?=user_id?>')">send msg</a>
助けてください!