使用电报Bot API

时间:2018-09-21 12:37:31

标签: javascript node.js telegram-bot

我正在尝试使用文件的url和方法“ sendDocument”发送pdf文件,问题是由于存储文件的服务器,我无法直接访问该文件。我试图使用这篇文章中提供的答案: readFileSync from an URL for Twitter media - node.js

它可以工作,但是文件以“ file.doc”的形式发送。如果我将扩展名更改为pdf,则它是正确的文件。我需要采取其他步骤来发送具有正确名称和扩展名的文件,还是有另一种方法可以实现所需的功能?

编辑: 我用来获取pdf的代码与我提供的帖子的anwser中的代码完全相同:

function getImage(url, callback) {
https.get(url, res => {
    // Initialise an array
    const bufs = [];

    // Add the data to the buffer collection
    res.on('data', function (chunk) {
        bufs.push(chunk)
    });

    // This signifies the end of a request
    res.on('end', function () {
        // We can join all of the 'chunks' of the image together
        const data = Buffer.concat(bufs);

        // Then we can call our callback.
        callback(null, data);
    });
})
// Inform the callback of the error.
.on('error', callback);
}

要发送文件,我使用类似这样的内容:

getImage(url, function(err, data){
    if(err){
        throw new Error(err);
    }

    bot.sendDocument(
        msg.chat.id,
        data,
    );
})

2 个答案:

答案 0 :(得分:0)

您可以使用以下代码指定文件名和文件类型:

const fileOptions = {
  // Explicitly specify the file name.
  filename: 'mypdf.pdf',
  // Explicitly specify the MIME type.
  contentType: 'application/pdf',
};

全功能:

 getImage("https://your.url/yourfile.pdf", function(err, data){
  if(err){
      throw new Error(err);
  }

      const fileOptions = {
        // Explicitly specify the file name.
        filename: 'mypdf.pdf',
        // Explicitly specify the MIME type.
        contentType: 'application/pdf',
      };
      bot.sendDocument(msg.chat.id, data, {}, fileOptions);
}); 

注意::如果您没有要指定的查询选项,则必须提供一个空对象({})来代替“其他电报”查询选项。例如,

// 错误! //' fileOptions '将作为其他电报查询选项!

bot.sendAudio(chatId, data, fileOptions);

// 对!

bot.sendAudio(chatId, data, {}, fileOptions);

更多信息在这里: https://github.com/yagop/node-telegram-bot-api/blob/master/doc/usage.md#sending-files

答案 1 :(得分:0)

找到了解决方案。我正在使用Telebot api(对不起,我没有提到这个细节,但是我不知道,我没有制作该项目)。

我使用以下行发送文件:

bot.sendDocument(chat_id, data, {fileName: 'file.pdf'});