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.

This works fine :

$user = $this->facebook->getUser();
$loginUrl = $this->facebook->getLoginUrl(array('scope' => 'publish_stream')); 
try {
    $post = $this->facebook->api('/me/feed', 'post', array('message'=>'Test message !'));   
} catch (FacebookApiException $e) {
    header("Location:{$loginUrl}");
}

In this case, post is made on my wall by application.

But, I want to make the post on the application page by the application. When I change

$this->facebook->api('/me/feed') 

to

$this->facebook->api('/xxxxxxxxxxxxxxx/feed')

, Post is made by me on the application.

So, how to make the post by the application on the application page itself i.e. on the FB page which can be created from the application.

So, I can see the posted post as "Test message" via 'application_name'.

share|improve this question
Get an app access token or a page access token. developers.facebook.com/docs/authentication/applications, developers.facebook.com/docs/authentication/pages – CBroe Jul 18 '12 at 11:26

1 Answer

you can read the doc of Authenticating as a Page

  1. Authenticate the user and request the manage_pages permission

  2. Get the list of pages the user manages (https://graph.facebook.com/me/accounts?access_token=USER_ACCESS_TOKEN)

    The response will be an array of Pages and Applications that the user manages [...] Within each block will be a Page access token or Application access token which can be used to make requests to the Graph API.

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.