どういうわけか、次のコードでiframeモードを機能させることができませんダイアログは表示されますが、読み込みが永久にハングし、ボックスに何も表示されません。
FB.getLoginStatus(function(resp) {
if (resp.status !== 'connected') return;
FB.ui({
method: 'apprequests',
title: 'My title',
display: 'iframe',
message: 'My message',
to: '100003750613973'
}, function(resp) {
console.log('emitted request to ', resp.to);
});
});