使用Google Apps脚本的Telegram Bot API中的InlineQueryResult的答案

时间:2018-07-06 03:01:31

标签: google-apps-script telegram telegram-bot

我正在将Google Apps脚本用于Telegram Bot API,并且在 answerInlineQuery 方法中 InlineQueryResultArticle 遇到了问题。

function answerInlineQuery(iqid, result){
  var data = {
        method: "post",
        payload: {
          method: "answerInlineQuery",
          inline_query_id: iqid,
          results:JSON.stringify(result)
        }
}
}

以下是结果的格式:-

    var result= {
        InlineQueryResultArticle:[
          {type:'article',id: iqid, title:"RESULT 1", input_message_content:"TEXT 1"},
         {type:'article',id: iqid, title:"RESULT 2", input_message_content:"TEXT 2"}           
        ]
   }; 
answerInlineQuery(iqid, result);

我已经在@BotFather中启用了内联模式。我的机器人也正在接收内联查询,对于每个请求,我都可以正确看到我的内联查询ID,也可以将结果接收为[object Object]。 但是,问题是我没有得到任何结果。

REF:在answerinlinequery中,结果应该是使用these results中的任何一个的内联查询的JSON序列化结果数组。

谁能指出我要去哪里了

2 个答案:

答案 0 :(得分:0)

InlineQueryResultArticleid字段对于每个结果都必须是唯一的。但是,您将两个结果的id设置为iqid

您应将其替换为自定义ID。

 var result= {
    InlineQueryResultArticle:[
       {type:'article',id: "1", title:"RESULT 1", input_message_content:"TEXT 1"},
       {type:'article',id: "2", title:"RESULT 2", input_message_content:"TEXT 2"}           
    ]
}; 

答案 1 :(得分:0)

经过多次尝试,我找到了解决方案:

这里有一个包含三个结果的内联答案

****注意:使用机器人的示例 file_id 更改 document_file_id 的值,否则您会看到错误

//your bot token placed here
const token = "";
tgmsg('answerInlineQuery', {

    "inline_query_id": update['inline_query']['id'],
    "results": JSON.stringify([
        //inline result of an article with thumbnail photo
        {
            "type": "article",
            "id": "1",
            "title": "chek inline keybord ",
            "description": "test ",
            "caption": "caption",
            "input_message_content": {
                "message_text": "you can share inline keyboard to other chat"
            },

            "thumb_url": "https://avatars2.githubusercontent.com/u/10547598?v=3&s=88"
        },
        //inline result of an article with inline keyboard
        {
            id: "nchfjdfgd",
            title: 'title',
            description: "description",
            type: 'article',
            input_message_content: {
                message_text: "inline is enabled input_message_content: {message_text: message_text}message_text"
            },
            reply_markup: {
                "inline_keyboard": [
                    [{
                        "text": "InlineFeatures.",
                        "callback_data": "inline_plugs_1118095942"
                    }],
                    [{
                        "text": "OtherFeatures.",
                        "callback_data": "other_plugs_1118095942"
                    }]
                ]
            }
        },

        //inline result of a cached telegram document with inline keyboard
        {
            id: "nchgffjdfgd",
            title: 'title',
            description: "description",
            //change this on with the value of file_id from telegram bot api 
            document_file_id: "BQACAgQAAxkBAAIBX2CPrD3yFC0X1sI0HFTxgul0GdqhAALjDwACR4pxUKIV48XlktQNHwQ",
            type: 'document',
            caption: "caption ghh hhdd",
            reply_markup: {
                "inline_keyboard": [
                    [{
                        "text": "InlineFeatures.",
                        "callback_data": "inline_plugs_1118095942"
                    }],
                    [{
                        "text": "OtherFeatures.",
                        "callback_data": "other_plugs_1118095942"
                    }]
                ]
            }

        }
    ])
})

function tgmsg(method, data) {
    var options = {
        'method': 'post',
        'contentType': 'application/json',
        'payload': JSON.stringify(data)
    };
    var responselk = UrlFetchApp.fetch('https://api.telegram.org/bot' + token + '/' + method, options);
}