当前位置:  开发笔记 > 编程语言 > 正文

通过node.js电报Bot sendPhoto

如何解决《通过node.js电报BotsendPhoto》经验,为你挑选了1个好方法。



1> 小智..:

我已经解决了问题。看起来您正在使用自己的漫游器的聊天ID发送无效的照片。因此,您将收到403禁止的错误(请参阅电报漫游器错误api)

要使用sendPhoto功能,您将必须使用该用户而不是您的机器人用户的聊天ID。我对您的代码做了很少的修改,以使您清楚。此代码将从message.chatid变量获取用户的聊天ID 。只需替换此代码中的令牌并提及您的图片网址,然后尝试即可。

PS:向该机器人发送任何消息,它将发送照片作为响应。

var telegram = require('telegram-bot-api');

var api = new telegram({
    token: 'Your BOT token',
    updates: {
                enabled: true,
                get_interval: 1000
             }
});
api.on('message', function(message)
{
    var chat_id = message.chat.id;
        console.log("This is the user's chat id"+chat_id);

api.sendPhoto({
    chat_id : message.chat.id,
    caption: 'This is my test image',
    photo: 'image.jpeg'//replace your image url here
})
.then(function(data)
{
    console.log(data);
});
});

推荐阅读
郑小蒜9299_941611_G
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有