3

我们Fb API用于 facebook 上的 post feed。

我的代码是 -

            if (response.authResponse) {                   
                var data =
                {
                    name: "link to apply",
                    picture: 'http://www.hrgp.biz/Uploads/CompanyForTesting_499/NotesReminders/2608chemtec-logo.jpg',
                    link: "http://www.hrgp.biz/bc0efdb3-f1a7-4d81-9635-d1418e808b6d.aspx",  // Go here if user click the picture
                    description: "thank you"                        
                }
                FB.api('me/feed', 'post', data, function (response) {
                    if (!response || response.error) {
                        alert(JSON.stringify(response.error));
                    } else {
                        //alert('Post ID: ' + response.id);
                        alert('feed posted successfully.');
                    }
                });                   
            }
        }, { scope: 'email,user_likes,publish_actions,publish_stream,read_stream,photo_upload' });

此代码有效,但图片有问题。它没有出现在帖子中。

我该如何解决这个问题?或者请告诉我我的代码是否有任何问题。

谢谢你..!!!

4

2 回答 2

1

请参考Facebook Open Graph 图片的最小宽度和高度是多少?.

高除以宽和宽除以高的比值(w/h,h/w)不能超过3.0。

你的照片,http ://www.hrgp.biz/Uploads/CompanyForTesting_499/NotesReminders/2608chemtec-logo.jpg , 250/65 = 3.84615384615 明显超过了最大比例:

在此处输入图像描述

于 2013-05-21T08:56:37.467 回答
0
FB.api('me/feed', 'post', { message: body,
                            picture :'PICTURE_URL',
                            description : "DESCRIPTION"
                            }
                    , function (res) {
    if(!res || res.error) {
        console.log(!res ? 'error occurred' : res.error);
        return;
    }
    console.log('Post Id: ' + res.id);

更多选项检查 - https://developers.facebook.com/docs/graph-api/reference/v2.0/user/feed

于 2014-06-20T10:11:32.670 回答