<?php
require "src/facebook.php";
$facebook = new Facebook(array(
'appId'=>'xxxxxxxxx',
'secret'=>'xxxxxxxxxxxxxxxxx',
'cookie'=>true
));
if(!$facebook->getUser())
{
$url = $facebook->getLoginUrl(array('scope'=>'email,publish_actions'));
echo "<script> top.location=\"".$url."\"; </script>";
exit(0);
}
$params = array('article'=>'http://www.xxxxxxxxx.com/script/','access_token'=>$facebook->getAccessToken());
$out = $facebook->api('/me/namespace:read','post',$params);
print_r($out);
exit(0);
?>
But i got some questions, where should i put these meta tags? i only found javascript examples and i got another question how to use a dynamic url like:
http://www.xxxxxxxxx.com/script/?article_id=xxxx
if i try to put some parameter in this url it returns error like:
Fatal error: Uncaught OAuthException: (#3502) Object at URL http://www.xxxxxxxxx.com/script/?article_id=xxxx has og:type of 'website'. The property 'article' requires an object of og:type 'namespace:article'. thrown in xxxxxxx on line 1106
thanks.