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.

how to share a link on facebook page as admin via an application ?

example : like tihs

share|improve this question
you'll need to use the manage_pages permission in the auth dialogue. – nickw444 Mar 24 '12 at 22:27
i want the code (php) – Ahmed Mansour Mar 25 '12 at 2:34
your code has been provided. – nickw444 Mar 26 '12 at 7:30

1 Answer

Spent about 2 hours working this out for you. be glad ;)

require_once("facebook.php");
    $facebook = new Facebook(array(
        'appId'  => 'YOUR APP ID',
        'secret' => 'YOUR APP SECRET',
    ));
    $pageID = 123456789; //YOUR PAGE ID HERE

    $user_id = $facebook->getUser();
    if($user_id != false && $user_id != 0) {
        //user is logged in.
        $response = $facebook->api('me/accounts');
        foreach ($response['data'] as $key => $val) {
            if ($val['id'] == $pageID) {
                $page_access_token = $val['access_token'];
                //Below is the API Call for the posting to the page's wall.
                $api = $facebook->api('me/feed', 'POST', array('message' => 'LOLs', 'access_token' => $page_access_token)); 
            }
        }
     }
     else { 
        //if user is not logged in, make them log in.
        header('location:' . $facebook->getLoginURL(array('scope' => 'publish_stream, manage_pages')));
     }
share|improve this answer
solid effort haha – Mikey Mar 26 '12 at 5:42

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.