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'.