我想知道如何从Facebook Messenger聊天机器人获取用户的位置。我想要完成的是:聊天机器人会说“请发送给我你的位置”,然后用户将点击Facebook Messenger应用程序上的“共享位置”。我已经弄清楚如何获取用户发送的文本消息,而不是位置。提前谢谢!
答案 0 :(得分:1)
可以获得位置和文字。更准确地说,作为照片。
你需要带message.attachments.payload.coordinates
。您也可以查看message.attachments.type
。
示例:
{
"object": "page",
"entry": [{
"id": "1719442148306048",
"time": 1466780344978,
"messaging": [{
"sender": {"id": "123456789"},
"recipient": {"id": "987654321"},
"timestamp": 1466780344847,
"message": {
"mid": "mid.12345698875:c80066d69b6cee1779",
"seq": 65,
"attachments": [{
"title": "Dmitry's Location",
"url": "Link to bing.com through facebook redirect"
"type": "location",
"payload": {"coordinates": {"lat": 55, "long": 37}}
}]
}
}]
}]
}