How can I post to the wall of a Facebook Fan Page using PHP and Open Graph API

前端 未结 2 1209
南旧
南旧 2020-12-17 05:30

Sample code is appreciated, I can\'t seem to find any simple examples of this online.

2条回答
  •  Happy的楠姐
    2020-12-17 06:30

    in this change the /me/feed/ to your page id, I did't try....Just check

    $attachment = array('message' => 'some meesgae',
            'name' => 'This is my demo Facebook application!',
            'caption' => "Caption of the Post",
            'link' => 'mylink.com',
            'description' => 'this is a description',
            'actions' => array(array('name' => 'Get Search', 'link' => 'google.com')) );
        $result = $facebook->api('/me/feed?access_token='.$access_token, 'post', $attachment);
    

提交回复
热议问题