web-dev-qa-db-ja.com

TelegramボットチャットAPIを使用してユーザーの画像/アバターを取得するにはどうすればよいですか?

ユーザーオブジェクト にはphoto_idがないため、ユーザーのアバターを取得する方法はありますか?

phpコードは見つかりませんでしたが、このnodejsスニペットがうまく機能したので、これを使用してどのように機能するかを説明します。

  1. ボットを作成する(電報で@botfatherとチャットを開始する)
  2. ボットの作成が完了すると、HTTP APIのトークンが提供されます
  3. $ npm install --save node-telegram-bot-api
  4. node_modulesフォルダーの横にjsファイルを作成します(例:server.js
  5. このコードをserver.jsファイルに入れ、$ node server.jsで実行します

        const TelegramBot = require('node-telegram-bot-api');
        // replace the value below with the Telegram token you receive from @BotFather  
        const token = 'XXXX35XXXX:XXXX7DCYw5IsY6DHcwXXXXXXXXX';
        // Create a bot that uses 'polling' to fetch new updates    
        const bot = new TelegramBot(token, {
            polling: true
        });
        // Matches "/echo [whatever]"    
        bot.onText(/\/echo (.+)/, (msg, match) => {
            // 'msg' is the received Message from Telegram    
            // 'match' is the result of executing the regexp above on the text content    
            // of the message    
    
            const chatId = msg.chat.id;
            const resp = match[1]; // the captured "whatever"    
    
            // send back the matched "whatever" to the chat    
            bot.sendMessage(chatId, resp);
        });
        // Listen for any kind of message. There are different kinds of  
        // messages.  
        bot.on('message', (msg) => {
            const chatId = msg.chat.id;
            var user_profile = bot.getUserProfilePhotos(msg.from.id);
            user_profile.then(function (res) {
                var file_id = res.photos[0][0].file_id;
                var file = bot.getFile(file_id);
                file.then(function (result) {
                    var file_path = result.file_path;
                    var photo_url = `https://api.telegram.org/file/bot${token}/${file_path}`
                    bot.sendMessage(chatId, photo_url);
                });
            });
        });
    
3
Bagherani