Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
A 500 Interal Server Error from your own server? Then look into its logfiles. – CBroe Dec 15 '12 at 18:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.