I want to post to my page as the page itself, however, I've only succeeded in posting to it as myself. Can anyone help? Working with Facebook with PHP is kinda gritty.
PHP Code:
$facebook = new Facebook(array( 'appId' => 'APP_ID', 'secret' => 'APP_SECRET', 'cookie' => true ));
$attachment = array('access_token' => $access_token, 'message' => $insult['info'], 'actions' => array(array('name' => $category['name'], 'link' => $siteurl.$category['url'].'/')) );
$result = $facebook->api('/PAGE-ID/feed/', 'post', $attachment);
|