我们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' });
此代码有效,但图片有问题。它没有出现在帖子中。
我该如何解决这个问题?或者请告诉我我的代码是否有任何问题。
谢谢你..!!!