Создать новый канал с помощью бота в telegram или telegram api - PullRequest
0 голосов
/ 06 февраля 2020

Как я могу создать новый канал, используя бота в Telegram или telegram api?

Я использовал lib 'telegram-mtproto'. И метод, который я использовал 'channel.createChannel' в https://core.telegram.org/methods Вот мой код

import MTProto from 'telegram-mtproto'

const api = {
    layer: 57,
    // initConnection: 0x69796de9,
    api_id: 1153141
}

const server = {
    dev: true //We will connect to the test server.
} //Any empty configurations fields can just not be specified

const client = MTProto({ server, api })

export const connect = async () => {
    const result = await client('channels.createChannel', {
        title: 'This is title',
        about: 'This is description',
        address: 't.me/test123456'
    })
    console.log('TCL: result', result)
}

, и я получаю это

Error 401 AUTH_KEY_UNREGISTERED 2 2
(node:14408) UnhandledPromiseRejectionWarning: Error: 401 AUTH_KEY_UNREGISTERED CODE#401 AUTH_KEY_UNREGISTERED

Не может ли кто-нибудь помочь меня за это или дай мне идею. большое спасибо .

...