C'è un modo per inviare la mia posizione con i tuoi amici-messenger da un client mobile, ma come posso mandare qualche posizione da un bot? (Piattaforma api messaggero)
Quando provo a trasmettere una struttura simile da bot, ottengo un errore:
(#100) Unsupported attachment type
C'è un modo per inviare la mia posizione da bot?
Esempio di messaggio ricevuto a bot:
{
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}}
}]
}
}]
}]
}
Io cerco di inviare un messaggio con allegato in questo modo:
attachment: {
type: location,
payload: {coordinates: {lat: 55, long: 37}}
}













