在Facebook开发者中,我在我的应用中设置了webhook页面。一切正常,当有人向我的页面发送消息时,我正在获取webhook更新。 JSON:
{
"object": "page",
"entry": [
{
"id": 859996317460158,
"time": 1461153660752,
"messaging": [
{
"sender": {
"id": 1197760990255914 // page scoped user id
},
"recipient": {
"id": 859996317460158
},
"timestamp": 1461153660704,
"message": {
"mid": "mid.1461153660696:7daeb8be2403ec7835",
"seq": 64,
"text": "1111111111111111111"
}
}
]
}
]
}
我想从撰写此邮件的人那里获得真实(facebook)用户ID。但是来自api查询https://graph.facebook.com/v2.6/1197760990255914?access_token=<page_access_token>
我只能获得first_name, last_name, profile_pic
个字段。
如何从页面范围的用户ID获取用户ID和消息(对话框)历史记录?