【发布时间】:2021-10-25 08:07:42
【问题描述】:
我的应用正在开发中
我正在使用以下权限: "public_profile", “发布视频”, "pages_show_list", "pages_read_engagement", "pages_manage_posts", “发布页面”, "user_managed_groups", "groups_show_list", "publish_to_groups", "groups_access_member_info", “发布操作”
但是在尝试使用 api 在组和页面中发布照片时,我遇到了以下错误
https://graph.facebook.com/v12.0/{page-id}/photos?access_token=={token}&url={url.jpg}
错误:
{
"error": {
"message": "(#200) The permission(s) publish_actions are not available. It has been deprecated. If you want to provide a way for your app users to share content to Facebook, we encourage you to use our Sharing products instead.",
"type": "OAuthException",
"code": 200,
"fbtrace_id": "AW4L8qJL7HJWz9oTL7rk1IY"
}
}
https://graph.facebook.com/v12.0/{group-id}/photos?access_token={token}&url={url.jpg}
错误:
{
"error": {
"message": "(#200) Insufficient permission to post to group",
"type": "OAuthException",
"code": 200,
"fbtrace_id": "AsV2H45AICb6G7D73aiedW4"
}
}
有人可以帮忙吗
【问题讨论】:
标签: facebook facebook-graph-api