Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 fulfill this need using Facebook SDK for PHP. please help me to do this. i have registered my app and hosted the app with a host . step by step instructions is appreciated.

Thanks in advanced

share|improve this question
You want to post to all of your friends or the app users? – Shadowfax Dec 25 '12 at 5:30
not to all off my friends. friends of app users. – user788567 Dec 25 '12 at 5:34
3  
What are you describing sounds like spam. You'll get cut off real quick, you might as well not bother building it. – Tommy Crush Dec 25 '12 at 5:36
i have found a blog right bobbelderbos.com/2011/08/… . which describe how to post friends wall one by one . – user788567 Dec 25 '12 at 5:40
note that posting to a friends wall is deprecated and will thankfully not work anymore after february. see roadmap: developers.facebook.com/roadmap – luschn Dec 25 '12 at 14:27

1 Answer

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);
    
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.