aynı sorunu bende yaşıyorum

facebook wikiden buluğum bir kod var fakat bu kodu nerede kullanacağımı bilmiyorum. Yardımlarınızı bekliyorum??
<?php
///////////start header for each page in your application if u have other remove it//////////////////////////
require_once 'facebook.php';
$appapikey = 'xxx';
$appsecret = 'xxx';
$appcallbackurl = 'xxx';  // http://www.yourdomain.com/yourfolder
$facebook = new Facebook($appapikey, $appsecret);
$user = $facebook->require_login();
try {
// If app is not added, then attempt to add
if ($facebook->api_client->users_isAppAdded($user)) {
exit;
}
} catch (Exception $ex) {
$facebook->set_user(null, null);
$facebook->redirect($appcallbackurl);
}
///////////end header for each page in your application if u have other remove it//////////////////////////
$template_bundle_id = xxx;   // change 123456789 with ur Template Bundle ID
$tokens = array( 'album'=>'Play' ); 
//There is no target for the story in this example, but if there was, 
//$target_ids would be an array of user IDs 
$target_ids = array(); 
$body_general = ''; 
$facebook->api_client->feed_publishUserAction( $template_bundle_id, json_encode($tokens), implode(',', $target_ids), $body_general);
?>