电报(最简单的嵌入式机器人)在iOS上发送照片2次

时间:2018-08-20 10:31:39

标签: ios client inline telegram telegram-bot

我有一个类似于@pic的嵌入式机器人,它运行正常,当我输入查询词时,我可以看到出现的图片,因此我可以选择其中一个并发送至聊天室。问题是当我这样做时-发送了相同结果的2个副本。这仅在iOS客户端上发生。在Android,PC和其他平台上,仅发送一张图片。我已经检查了所有日志(该机器人已在Node.js中完成),对于每个请求,我都有一个响应。尽管@pic bot可以正常工作,但这似乎是一个iOS客户端错误。有人遇到此错误或有什么想法会导致它吗?

answerInlineQuery响应对象示例

{
"inline_query_id": "817150058382989968",
"results": [
    {
        "type": "photo",
        "id": "se090",
        "photo_url": "http://www.shadowera.com/secardbot361/se090.jpg",
        "thumb_url": "http://www.shadowera.com/secardbot361/se090.jpg",
        "photo_width": 344,
        "photo_height": 480,
        "title": "Tracking Gear",
        "description": "You can view the hands of opposing players.",
        "caption": "king"
    },
    {...

更新: 因此,我在node.js @iosinlinebot中创建了一个最简单的内联漫游器(您可以尝试),并且您的行为完全相同:仅在iOS设备上,一旦点击结果,您就会向聊天室发送2张图片。 这是代码:

exports.handler = function(event, context) {
        console.log(event);
        const https = require("https");
        let answer = {
            inline_query_id: event.inline_query.id,
            results: [{
                    type: "photo",
                    id: "abcd",
                    photo_url: "https://lh3.googleusercontent.com/jVXglyWWL5J2y1vRN-7Jy3_ozvvZc4w5486IAkbAIrWcNN_vn7YuIvhc1JDtGq43BqGl=s180",
                    thumb_url: "https://lh3.googleusercontent.com/jVXglyWWL5J2y1vRN-7Jy3_ozvvZc4w5486IAkbAIrWcNN_vn7YuIvhc1JDtGq43BqGl=s180",
                    photo_width: 180,
                    photo_height: 180,
                    title: "title",
                    description: "description",
                    caption: "test"
                }],
            cache_time:1 
        };
        let postBody = JSON.stringify(answer);
        let options = {
            hostname: "api.telegram.org",
            port: 443,
            path: "/bot" + process.env.TOKEN + "/answerInlineQuery",
            method: "POST",
            headers: {
                'Content-Type': 'application/json',
                'Content-Length': postBody.length
            }
        };

        let postreq = https.request(options, (res) => {
            res.setEncoding('utf8');
            const body = [];
            res.on('data', (chunk) => body.push(chunk));

            res.on('end', () => {
                let j = body.join('');
                console.log(j);
                //context.done(JSON.parse(j));
            });
        });
        postreq.write(postBody);
        postreq.end();
};

这是一个事件对象(来自电报):

{
  "update_id": 12345678,
  "inline_query": {
    "id": "123456789123456789",
    "from": {
      "id": 123456789,
      "is_bot": false,
      "first_name": "Firstname",
      "username": "username",
      "language_code": "it-IT"
    },
    "query": "test",
    "offset": ""
  }
}

更新: 感谢Sedric Heidarizarei,我们得以找到问题所在。这是一个电报iOS客户端错误。如果InlineQueryResultPhoto对象包含标题字段,则您的用户会将2张图片发布到聊天中。

1 个答案:

答案 0 :(得分:1)

^$关闭正则表达式的开始和结束非常重要。
例如,具有此正则表达式/^[/]start/的用户可以将startstart astart b用作Bot命令,并允许他们接收您的照片,但是使用/^[/]start$/ ,用户必须输入确切的/ start命令。

1:使用此模块:node-telegram-bot-api
2:并发送您的照片:

bot.onText(/^[/]start$/, (msg) => {
  const opts = {
    parse_mode: 'Markdown',
    reply_markup: {
        inline_keyboard: [[{
                text: '',
                callback_data: 'back'
                }]]
        }
  };
  bot.sendPhoto(msg.chat.id, 'AgADBAADn64xBoABCx8L8trMV9eMqgDAAEC', opts); // Your Photo id
}); 

注意:
打开一个空项目,只需使用并检查您的InlineQueryResultPhoto

更新
那是一个电报错误,仅供临时使用,请从您的caption

中删除let answer ={}