I want to post notifications to those who've authorized my app.
I see this page: https://developers.facebook.com/docs/app-notifications/
<?php
require_once 'include/facebook.php';
$facebook = new Facebook(array(
'appId' => 'myiappid',
'secret' => 'mysecret'
));
$fbed = $facebook->api( '/myfbid/notifications', 'POST', array(
'template' => 'You have received a new message.',
'href' => 'path/to/message/?id=5',
'access_token' => 'appid|secret'));
?>
This gives me a 500 internal server error. Help?