I would like to write a status message to my application page with the name of the application.
I use
$app_id = 'ID OF MY APPLICATON'
$facebook->api($app_id.'/feed', 'POST', array('message' => 'test'));
After the message is written, my name is displayed, but instead of the name I need to specify the name of the application that will be shown, is it possible to do this?
source
share