This Works:
<?php
$APPID = '000000000000000';
$APPSECRET = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
$CANVASSPAGE = 'https://apps.facebook.com/appname/';
$AppScope = 'publish_stream,create_event,user_birthday';
?>
This Doesn't Work:
<?php
$APPID = '000000000000000';
$APPSECRET = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
$CANVASSPAGE = 'https://apps.facebook.com/appname/';
$AppScope = 'publish_stream,create_event,user_birthday,education';
?>
And I get the error message:
Error: An error occurred. Please try again later.
If you notice the only difference on these 2 is I added 'education' on the app scope in the latter then throws an error upon app request.