Fb.UI 提要没有以正确的宽度显示,当对话框呈现时它不会调整到屏幕大小,除了 iphone 4 和 4s。用我的 ipod touch,和 android 它比屏幕还大。我正在使用 sencha touch 框架。有没有办法调整对话框的大小。我尝试使用 FB.UIServer.Methods["fbml.dialog"].size = {width:300, height:555}; 但它说 FB.UIServer 未定义。
任何帮助将不胜感激
function publishStory() {
FB.ui({
access_token:accsstkn,
method: 'feed',
name: 'APP',
caption: 'caption',
display: 'touch',
description: description,
link: 'https://',
picture: img,
},
function(response) {
if (response && response.post_id) {
alert('Successfully Saved');
var postid = response.post_id;
return response.post_id;
} else {
alert('Try Again');
}
}
);
return false;
}
publishStory();