【发布时间】:2019-08-06 19:33:42
【问题描述】:
我是 facebook 图形 API 的新手,我想获取调度程序帖子的所有详细信息,例如
full_picturemessage- 等
我用过:
GET v4.0/...?fields={fieldname_of_type_ScheduledPost} HTTP/1.1
Host: graph.facebook.com
但是,我得到了错误:
{
"error": {
"message": "(#803) Some of the aliases you requested do not exist: ...",
"type": "OAuthException",
"code": 803,
"fbtrace_id": "A-aQAYXFbAdSX7oMYfcUP_3"
}
}
参考,https://developers.facebook.com/docs/graph-api/reference/scheduled-post/
【问题讨论】:
-
您能确定产生错误的确切字段吗?只使用一个进行测试。
-
@luschn 我用这个 API GET
https://graph.facebook.com/v4.0/...?fields={id}&access_token=<page_access_token>
标签: facebook facebook-graph-api