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 have a Facebook app which posts news from a company website to the company's Facebook business page.

When I test it with my developer account's id or my private account id, it works great. But when I use the id of the business page, no news show up on the chronic.

This is my code:

<?php
require_once 'library/facebook.php';

$facebook = new Facebook(array(
  'appId'  => FACEBOOK_APP_ID,
  'secret' => FACEBOOK_APP_SECRET,
  'cookie' => true,
));


if(is_null($facebook->getUser())){
    header("Location:{$facebook->getLoginUrl(array('req_perms' =>    'user_status,publish_stream,user_photos,offline_access,publish_checkins'))}");
    exit;
}

if($facebookpost){
    try {
      $facebook->setFileUploadSupport("http://" . $_SERVER['SERVER_NAME']);   
      $img = $sitepath.$gfxpath.$filename;

      $arguments = array(
        'source' => '@' . $img,
        'message' => utf8_encode(html_entity_decode(strip_tags($text))),

      );

      $facebook->api("/".FACEBOOK_PROFILE_ID."/photos", 'post', $arguments);

    } catch (FacebookApiException $e) {
      print $e;
    }
}
?>

The app shows up correctly in the profile setting (image) app permissions

are there some different settings for business pages?

share|improve this question
(i know this isn't an iOS question, but the API works the same way) – Igy Jun 14 '12 at 10:18

1 Answer

up vote 1 down vote accepted

You need to use the page's access token to post updates to your page. You can get the access token for the page by calling the following API endpoint: /me/accounts, then look for your page ID / Name.

share|improve this answer
i found the access token. but how do i use it? – Nut Jun 14 '12 at 15:21
1  
thank you. this was the solution! actually i had to set the permission "manage_page" in the app to get a list of all pages managed by that user. for every page there is an acces_token which is used to post sucessfully on a facebook page – Nut Jun 15 '12 at 8:19

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.