FB.UI使用成像分期

时间:2013-11-11 18:14:58

标签: facebook facebook-javascript-sdk

我有一个标准的文件上传表单,我想用它来收集用户的图像,然后上传到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参数显然无效

0 个答案:

没有答案