Facebook 应用程序请求,添加“教育”时出错;在应用程序范围内

发布于 2025-01-08 17:38:57 字数 593 浏览 0 评论 0原文

这有效:

<?php
$APPID = '000000000000000';
$APPSECRET = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
$CANVASSPAGE = 'https://apps.facebook.com/appname/';

$AppScope = 'publish_stream,create_event,user_birthday';
?>

这不起作用:

<?php
$APPID = '000000000000000';
$APPSECRET = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
$CANVASSPAGE = 'https://apps.facebook.com/appname/';

$AppScope = 'publish_stream,create_event,user_birthday,education';
?>

我收到错误消息:

错误:发生错误。请稍后重试。

如果您注意到这两者的唯一区别是我在后者的应用程序范围上添加了“教育”,然后根据应用程序请求抛出错误。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等数载,海棠开 2025-01-15 17:38:58

没有教育权限

用户对象拥有教育 字段,但是访问此字段的适当权限是:

  • user_education_history – 对于用户本身
  • friends_education_history – 对于用户的朋友

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文