在iframe应用程序的IE9中阻止了FB.UI显示对话框,"仅显示安全内容"

use*_*774 5 internet-explorer facebook internet-explorer-9

这是我的代码,它在IE 7,8中工作正常,但在IE 9中被阻止

FB.ui(
           {
               display: 'dialog',
               method: 'feed',
               name: Resource.WallPost.Title,
               link: Resource.WallPost.Url,
               picture: Resource.WallPost.PictureUrl,
               caption: '',
               description: Resource.WallPost.Description,
               message: ''
           },
           function (response) {
               if (response && response.post_id) {               
               } else {               
               }
           }
         );
Run Code Online (Sandbox Code Playgroud)