我正在使用node-telegram-bot-api模块,我希望将用户共享的链接数量提供给他们的朋友。
用户有Share Status Button
有没有办法在Shared
中显示用户朋友的链接Clicked
或Share Status Button
的数量?
例如
1:约翰的Share Status Button
:5 //约翰共享5人或5人约翰的朋友点击该链接
2:Maria的Share Status Button
:20 // Maria与20个人或20个人的Maria的朋友分享点击该链接
。
。
有可能吗?
更新:
bot.onText(/\/start/, (msg) => {
const opts = {
reply_markup: JSON.stringify({
keyboard: StartKeyboard,
resize_keyboard: true,
one_time_keyboard: true
})
};
bot.sendMessage(msg.chat.id, `telegram.me/fullmovie_bot?start=${msg.chat.id}`, opts);
console.log (msg)
});
答案 0 :(得分:1)
没有直接的,但你可以间接获得一些指标。
switch_inline_query
+ InlineQuery
+ answerInlineQuery
+ chosen_inline_result
来记录atidts以进行分享和放大;完成股份。内联查询可以是@yourbot invite?id=1234
形式。此方法为您的渠道提供了更多指标,但对用户来说不太方便/start
参数。它可以是/start invite?id=123
以上方法已在我的机器人@DebtsTrackerBot
中成功使用