facebook自动Feed不共享图片?

时间:2013-05-15 07:32:11

标签: facebook facebook-graph-api facebook-javascript-sdk

我在我的应用程序中自动共享我的墙上的Feed,它工作得非常好,但是当我附加图像并链接它时,我知道图像不会出现在localhost上,但至少会有成功消息,但它我在回答中提到了一个错误,有什么想法吗?

$(document).ready(function(){

                var image_name = '<?=$trx_detail->image_name?>'

                var wallPost = {
                    access_token: '<?php echo $this->facebook->getAccessToken()?>',
                    message: 'test message',
                    link: <? echo "'".CANVAS_URL."'";?>,
                    picture: '<?=base_url()?>path/'+image_name,
                    description: 'test description!'
                };

                FB.api('/me/feed', 'post', wallPost, function(response) {
                    if (!response || response.error) {
                        alert('Error occurred');
                    } else {
                        alert('Success!');
                    }
                });
            });

1 个答案:

答案 0 :(得分:0)

我发现了问题,对于迟到的回复帖子感到抱歉,

存在问题
 link: <? echo "'".CANVAS_URL."'";?>

如果您尝试在localhost上发布图像,则不会显示图像,图像将仅显示在在线https服务器上。