我正在使用AWS Lambda和无服务器框架创建facebook messenger机器人。现在我只想让它重复发送给用户的任何内容。这是代码:
'use strict';
var https = require('https');
const axios = require('axios');
var VERIFY_TOKEN = "VERIFY";
var PAGE_ACCESS_TOKEN = "TOKEN";
module.exports.hello = (event, context, callback) => {
const response = {
statusCode: 200,
body: JSON.stringify({
message: 'Go Serverless v1.0! Your function executed successfully!',
input: event,
}),
};
callback(null, response);
// Use this code if you don't use the http event with the LAMBDA-PROXY integration
// callback(null, { message: 'Go Serverless v1.0! Your function executed successfully!', event });
};
// Receive user messages
module.exports.botReply = (event, context, callback) => {
var data = JSON.parse(event.body);
console.log("BOT REPLY")
// Make sure this is a page subscription
if (data.object === 'page') {
// Iterate over each entry - there may be multiple if batched
data.entry.forEach(function(entry) {
var pageID = entry.id;
var timeOfEvent = entry.time;
// Iterate over each messaging event
entry.messaging.forEach(function(msg) {
if (msg.message) {
console.log("received message");
const payload = {
recipient: {
id: msg.sender.id
},
message: {
text: "test"
}
};
const url = "https://graph.facebook.com/v2.6/me/messages?access_token=" + PAGE_ACCESS_TOKEN;
axios.post(url, payload).then((response) => callback(null, response));
} else {
console.log("Webhook received unknown event: ", event);
var response = {
'body': "ok",
'statusCode': 200
};
callback(null, response);
}
});
});
}
}
因此机器人成功回显消息,但在我的日志中,我可以看到它被多次执行。有时,由于某种原因,消息在JSON中没有“消息”键,因此多次执行会产生不同的结果。我认为这与我将消息发送回用户有关,因为当我注释掉axios.post时,问题就会停止。知道为什么会这样吗?