0

新しい Telegram Bot ユーザーを CouchDB に挿入するにはどうすればよいですか?
サンプル データjack johnsを db に挿入して問題ありませんでしたが、Telegram ユーザーのユーザー名をどのように取得し、それを db に入れればよいかわかりません。 これは私のコードです:

import 'babel-polyfill';  
import './env';
import TelegramBot from 'node-telegram-bot-api';    
const bot = new TelegramBot(process.env.BOT_TOKEN, {polling: true});
///////////////////////////////////   Sample Data
var server = require('couch-db')('http://localhost:5984');

var db = server.database('users');
db.destroy(function(err) {
    // create a new database
    db.create(function(err) {
        // insert a document with id 'jack johns'
        db.insert({ _id: 'jack johns', name: 'jack' }, function(err, body) {
            if (err) {
                console.log('insertion failed ', err.message);
                return;
            }
            console.log(body);
            // body will like following:
            //   { ok: true,
            //     id: 'jack johns',
            //     rev: '1-610953b93b8bf1bae12427e2de181307' }
        });
    });
});
//////////////////////////////
bot.onText(/^[\/!#]start$/, msg => {
 const opts = {
    reply_to_message_id: msg.message_id,
    reply_markup: JSON.stringify({
      keyboard: [['Store username']],
      resize_keyboard:true,
      one_time_keyboard: true
    })
  };
  bot.sendMessage(msg.chat.id, 'You Are Exist in DB', opts);
});
4

1 に答える 1