我有一个标准的文件上传表单,我想用它来收集用户的图像,然后上传到Facebook。
如果我将上传表单发布到FB 'staging' url,我会获得编码的暂存引用 - 但是当我尝试启动FB.UI()
供稿对话框时,将暂存令牌作为"图片提供#34;参数失败了?
登台网址是否严格用于使用对话框创建图形对象?如果我想使用对话框我是否必须将图像上传到其他地方而不是参考?
这是我的榜样:
$('#picture_upload').submit(function(e){
e.preventDefault();
$(this).attr('action',$(this).attr('action')+'?access_token='+accessToken);
$(this).ajaxSubmit({
success: function(response){
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
picture: response.uri,
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
} //call function after success
});
});
回复包含以下内容:
{"uri":"fbstaging://graph.facebook.com/staging_resources/MDAxMDE1MTU3NjIyNzExNzYwNA=="}
picture
函数
FB.UI
参数显然无效