我可以使用 facebook api 获取有关谁在我的 facebook 页面上发帖的详细信息吗?

Can i use the facebook api to get details about who posted on my facebook page?

如标题所述,我想在网站上制作一个供稿,其中包含用户在我的 Facebook 页面上发布的消息以及他的姓名和头像。

我设法从我的 fb 页面获取消息,但仅此而已

{
"data": [
  {
     "message": "message",
     "created_time": "time",
     "id": "id"
  },
  {
     "message": "message",
     "created_time": "time",
     "id": "id"
  }
]
}

我已经为此苦苦挣扎了一段时间,这有可能吗?

您应该声明所需的字段(参见 the doc), in your case, the from field (see post node reference)。