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.

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.

share|improve this question

1 Answer

There is no education permission!

user object have education field, however appropriate permissions to access this field is:

  • user_education_history – for user itself
  • friends_education_history – for user's friends
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.