Learn with H4RDIXx & redzed
رفتن به کانال در Telegram
Learn with meeee about anything 🗿🫶
نمایش بیشترکشور مشخص نشده استدسته بندی مشخص نشده است
241
مشترکین
-224 ساعت
-57 روز
-230 روز
آرشیو پست ها
Repost from H4RDIXx channel
New Method to Grant Token without captcha and without eror 429 (too many requests)
API :
https://h4x-token.vercel.app/oauth/guest/token/grantRequest : POST data :
{"uid": "Your UID Here", "password": "Your Password Here"}Response :
{"code":0,"data":{"refresh_expiry_time":1783866094,"expiry_time":1782570094,"uid":4333750383,"open_id":"42364658de716bd804cd16997333c51d","access_token":"fef288d13b25dff920e42a629ed93a5d8a0476445db8f56a40cdc7341e6cc252","main_active_platform":4,"expires_in":1296000,"token_type":"Bearer","platform":4,"create_time":1781274094,"scope":["get_user_info","get_friends","payment","send_request"],"refresh_token":"caf043c663dcefe4907c6207769e92acebb64710efb0393aa77787428b814f18"}}BY: @S_3_0_3
Next videos in this week
1 - variables (This is part of a series on learning Python and Basics)
2- Inline keyboard buttons ( telegram bot) - Fucntion edit message
if u cann boost channelBOOST it to support the channel CLICK TO BOOST
THE INLINE KEYBOARD BUTTON :
imports :import telebot from telebot.types import InlineKeyboardMarkup , InlineKeyboardButton step 2 create the structure and buttons
the structure =name variable = InlineKeyboardMarkup()
For example :main = InlineKeyboardMarkup() InlineKeyboardMarkup is used to create an inline keyboard. step 3 create the buttons
For example :btn1 = InlineKeyboardButton("hello" , callback_data = "hello") btn2 = InlineKeyboardButton("test" , callback_data = "test")
callback_data is the value that will be sent when the button is clicked. and u can add more buttons.main.add(btn1 , btn2)
use it to add the buttons to the main structure.step 4 send the keyboard
For example :bot.send_message(msg.chat.id , "chose a btn" , reply_markup = main)
reply_markup is used to attach the keyboard to the message.step 5 handle button clicks
For example :@bot.callback_query_handler(func = lambda c : True) def go(c):
this function will run when any inline button is clicked.step 6 check which button was clicked
For example :
if c.data == "hello":
bot.answer_callback_query(c.id , "Hello Brotherrr")
elif c.data == "test":
bot.answer_callback_query(c.id , "Im workkkl")
c.data contains the callback_data of the clicked button.
answer_callback_query sends a popup notification to the user.step 7 run the bot bot.polling()
polling keeps the bot online and waiting for messages and button clicks.in video I made two mistakes 1 - ImportError: cannot import name 'InlineKeyboardButto' from 'telebot.types'
--> I wrote InlineKeyboardButto instead of InlineKeyboardButton.2 - IndentationError: unindent does not match any outer indentation level
--> The indentation (spacing) in the if/elif block is incorrect.
I will work on two things, meaning two series: the first series will be about Python basics, and the second series will be about Telegram bots.
tomorrow i will upload two videos
Video for Python basics (print)
vidéo for inline keyboard buttons telegram
