Search code examples
phpfacebookfacebook-graph-apifacebook-php-sdkfacebook-apps

facebook application which help to post all friends wall at a time


I am very new to Facebook app development .

I am trying to develop an application which help to post all friends wall at a time. I want to fulfil this need using Facebook SDK for PHP. How to do this? I have registered my app and hosted the app with a host. Step by step instructions is appreciated.


Solution

  • post all friends wall at a time.

    See, you have to use Feed API to post , one-by-one.

    1. Get all the friends of the user:

      $facebook->api('/me/friends');
      
    2. for each friend, use feed to post on their wall

      $params = array(
      'access_token'  => USER_ACCESS_TOKEN, 
      'message'       => 'Blah Blah',
      'link'          => URL
      );        
      
      $facebook->api('/FRIEND_ID/feed','POST',$params);