FB.ui({
method: 'feed',
name: "Test Name",
link: "http://www.facebook.com",
picture: "https://www.rwe-smarthome.de/is-bin/intershop.static/WFS/RWEEffizienz-SmartHome-Site/RWEEffizienz-SmartHome/de_DE/Energiesparpaket%20plus/Energiesparpaket-Plus_170px_198px.png",
caption: '',
description: "Some description goes here",
},function(response) {
if (response && response.post_id) {
//alert('Post was published.');
} else {
//alert('Post was not published.');
}
});
以上代碼表示一個Facebook飼料對話框,但沒有圖像。我認爲問題在於圖片參數的長度。使用任何其他簡短圖片網址替換圖片網址將完成這項工作。我不能改變圖片的URL,導致它來自web服務。 Picture url的Facebook feed對話框是否有長度限制?
檢查此問題http://stackoverflow.com/questions/5502883/picture-posting-not-working-with-facebook-graph-api-anymore/5572622#5572622 – Venu