At the first time i use this code to test my apps with some post to my wall, its working:
$sendTo = $_POST['friend'];
$link = $_POST['link'];
$message = $_POST['message'];
$attachment = array('message' => $message, 'link' => $link, 'message' => $message);
$result = $facebook->api("/$sendTo/feed/",'post', $attachment)
And one day, i got this error, i dont know why?
Fatal error: Uncaught OAuthException: (#100) Sorry, this post contains a blocked URL thrown in /home/a3229328/public_html/MKK/exam/base_facebook.php on line 1033
Could any one tell me why and how to fix it?
Please help me!