Ben duvar mesajları üreten bir Facebook uygulaması üzerinde çalışıyorum. Bu Mesajları test, ben bir yazı "sevme" arasında Facebook Platform eylem başarısız olduğunu keşfetti ettik. Belirli bir hata mesajı
Object cannot be liked
Unable to like this object because it is not accessible (it may have been removed or you may no longer have permission to see it).
Hata önerilen koşulların hiçbiri aslında doğrudur.
- (!) Hata döner için google'da zero results (EDIT! Şimdi bir sonuç verir - bu soru)
- Facebook hata depo döner aranıyor zero results. (Ben bu hata bildirdi EDIT! İade one result çünkü şimdi)
- Bu belirli bir sorunu ele ikisi de Facebook topluluk forumları verimlerini two posts aranıyor.
Bu duvar duvara mesajlar stream.publish kendi PHP kütüphanesi kullanarak yoluyla oluşturulur. İşte benim üretim kodundan API çağrısı bir örnek
$this->facebook->api_client->stream_publish(
''
, array(
'name' => 'Sample Wall Post'
, 'description' => 'Just a test description'
, 'media' => array(
FbAppHelper::imageAttachment( 'path/to/image.gif', 'http://apps.facebook.com/' . FB_CANVAS_URI )
)
)
, null
, $facebookId
);
Herhangi bir ipucu?