我使用node-telegram-bot-api模塊,我想獲得我的用戶與他們的朋友分享的鏈接號碼。獲取鏈接共享或通過電報機器人點擊
用戶有Share Status Button
是否有Share Status Button
顯示由用戶的好友鏈接Shared
或Clicked
數的方法嗎?
例如
1:John的Share Status Button
:5 //約翰共享到5人或5人約翰的好友的點擊的鏈接
2上:Maria的Share Status Button
:20 //瑪利亞共享〜20人或20瑪麗亞的朋友的人點擊那個鏈接
。
。 這可能嗎?
更新:
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)
});
的可能的複製https://stackoverflow.com/questions/46316848/laravel-check-the-user-share-telegram成功使用-bot-link-to-other-users/46318044 –
謝謝,我正在使用java腳本,我如何能從我的消息中得到邀請? '''사이드: bot.onText(/ \ /開始/,(MSG)=> { const的選擇採用= { reply_markup:JSON.stringify({ 鍵盤:StartKeyboard, resize_keyboard:真, one_time_keyboard:真 }) }; bot.sendMessage(msg.chat.id,'telegram.me/fullmovie_bot?start = $ {msg.chat.id}',opts); console.log(msg) }); ' –