未从Telegram API获取更新

Not getting updates from Telegram API(未从Telegram API获取更新)
本文介绍了未从Telegram API获取更新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Vue应用程序中的MTProto-core(https://github.com/alik0211/mtproto-core)与Telegram API交互。

一切正常,除了当我尝试获取更新时,我遵循了示例代码,但它就是不起作用。

如有任何帮助,将不胜感激。

mtproto.updates.on('updateShort', message => {
  const { update } = message;

  if (update._ === 'updateUserStatus') {
    const { user_id, status } = update;

    console.log(`User with id ${user_id} change status to ${status}`);
  }
});

推荐答案

遗憾的是,如果您要接收更新,则必须每n秒轮询updates.getState一次。

所以是这样的:

setInterval(() => mtproto.call('updates.getState', {}), 3000)

这篇关于未从Telegram API获取更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Canamp;#39;t pass a DOM element to a constructor function in Javascript when trying to abstract section of WebAudio API xhr request(尝试抽象WebAudio API xhr请求的部分时,无法将DOM元素传递给Java脚本中的构造函数)
pitch shifter using web-audio-api?(使用网络音频API的音调变送器?)
How to play a base64 response from Google Text to Speech as an mp3 audio in browser using Javascript(如何使用Java脚本在浏览器中将从Google文本到语音的Base64响应作为mp3音频播放)
Tone.PitchShift and Howler.js issues(Tone.PitchShift和Howler.js问题)
Its possible to merge two audio #39;base64data#39; strings to create an unique audio file?(是否可以合并两个音频字符串以创建唯一的音频文件?)
Get logarithmic byteFrequencyData from Audio(从音频中获取对数字节频率数据)