简体   繁体   中英

Facebook feed group with images

I have script for feed message on facebook group. It works, but I need send feed with images. But don't know how to do it. For feed message I use $facebook->api('<group_id>/feed', 'POST', $attr); and in $attr is access_token and message.

You can use the following

$postData = array(
    'access_token' => '{your access token}', 
    'message' => '{message}',
    'picture' => '{image url}'
   );

Then

$facebook->api('<group_id>/feed', 'POST', $postData);

In addition you need to double check that the feed URL posting is enabled on your app settings.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM