我在页面墙上发布消息的通常方式是:
$args = array(
'access_token' => $page_access_token,
'message' => $title,
'link' => $link,
'name' => 'This is title',
'description' => 'This is a testing of the posting on page',
//'picture' => 'http://www.example.com/directory/images/30.jpg'
);
$post_id = $facebook->api("/$pageId/feed","post",$args);
但是我怎样才能将图像发布到我的墙上 - 替代方法:单击上传按钮,选择图像 -> 并上传,图像在墙上。
我的 FTP 上有一些图像,这些图像我想上传到我的墙上。
提前致谢