使用api.ai和heroku的Facebook Messenger聊天机器人中的OAuth异常(node.js)

问题描述:

我已经分享了我的代码以及下面弹出的错误。基本上,我遵循教程http://www.girliemac.com/blog/2017/01/06/facebook-apiai-bot-nodejs/和另一个。我的chatbot适用于smalltalk,但不适用于天气api的东西。我正在努力让聊天机器人给我答复不同城市的天气。我完全按照教程。使用api.ai和heroku的Facebook Messenger聊天机器人中的OAuth异常(node.js)

Error: { message: '(#100) No matching user found', 
    type: 'OAuthException', 
    code: 100, 
    error_subcode: 2018001, 
    fbtrace_id: 'DeubaTWU6Gg' } 
Error: { message: '(#100) No matching user found', 
    type: 'OAuthException', 
    code: 100, 
    error_subcode: 2018001, 
    fbtrace_id: 'FSiMes3IwHv' } 

//从只是天气API的东西

app.post('/ai', (req, res) => { 
    //console.log('*** Webhook for api.ai query ***'); 
    //console.log(req.body.result); 

    if (req.body.result.action === 'weather') { 
// console.log('*** weather ***'); 
    let city = req.body.result.parameters['geo-city']; 
    let restUrl = 'http://api.openweathermap.org/data/2.5/weather?APPID='+process.env.WEATHER_API_KEY+'&q='+city; 

    request.get(restUrl, (err, response, body) => { 
     if (!err && response.statusCode == 200) { 
     let json = JSON.parse(body); 
     // console.log(json); 
     let tempF = ~~(json.main.temp * 9/5 - 459.67); 
     let tempC = ~~(json.main.temp - 273.15); 
     let msg = 'The current condition in ' + json.name + ' is ' + json.weather[0].description + ' and the temperature is ' + tempF + ' ℉ (' +tempC+ ' ℃).' 
     return res.json({ 
      speech: msg, 
      displayText: msg, 
      source: 'weather' 
     }); 
     } else { 
     let errorMessage = 'I failed to look up the city name.'; 
     return res.status(400).json({ 
      status: { 
      code: 400, 
      errorType: errorMessage 
      } 
     }); 
     } 
    }) 
    } 

}); 

index.js代码如何解决这个问题?

错误是因为您使用recipient.id中的消息发送的页范围ID无效。假设您已经从教程中正确地设置了sendMessage()函数,最有可能的问题是您正在使用与bot聊天的Facebook帐户没有适当的角色。

如果机器人不公开(即尚未提交和批准),则用于向机器人发送消息的Facebook帐户必须在您的应用设置中被授予管理员,开发人员或测试人员角色。