我正在尝试向 Facebook API 发出 POST 请求以创建即时文章,如下所示:
curl \
-F 'access_token={access token}' \
-F 'html_source="<!doctype html><html>blah blah blah</html>"' \
-F 'published=true' \
-F 'development_mode=false' \
https://graph.facebook.com/{page-id}/instant_articles
我是该应用程序的管理员,当我调试访问令牌时,范围显示email, pages_show_list, pages_manage_instant_articles, public_profile
,但请求返回此错误:
{"error":
{"message":"(#200) Requires pages_manage_instant_articles permission to manage the object",
"type":"OAuthException",
"code":200,
"fbtrace_id":"Exyv2VtZ5m4"}
}
有人对发生的事情有任何想法吗?谢谢,如果您需要更多信息,请告诉我!