Ben bu JS yöntemi ile dere yayıncılık gerçekleştirmek için çalışıyor ettik:
function streamPublish(name, description, hrefTitle, hrefLink, userPrompt){
FB.ui(
{
method: 'stream.publish',
message: '',
attachment: {
name: name,
caption: '',
description: (description),
href: hrefLink
},
action_links: [
{ text: hrefTitle, href: hrefLink }
],
user_prompt_message: userPrompt
},
function(response) {
});
}
ancak Internet Explorer'da çalışır asla. Bunu nasıl aynı sonucu elde edebilirsiniz (veya ne olursa olsun sonuç bir kullanıcının akışında bir facebook uygulaması gönderme için "standart" olarak düşünülebilir) PHP? Facebook API belgeleri yoksul ve birçok kod örnekleri içermez.