β€1π₯1
chat_id = message.chat.id
msg = message.text.strip()
# Check if user only typed /ig without a URL
if msg.lower() == "/ig":
bot.sendMessage(
chat_id=chat_id,
text="β Please provide an Instagram Video URL like this:\n/ig https://instagram.com/p/ExampleVideo"
)
raise ReturnCommand()
# Remove command prefix
if msg.lower().startswith("/ig "):
msg = msg[4:].strip()
else:
bot.sendMessage(chat_id=chat_id, text="β Only Instagram links are supported.")
raise ReturnCommand()
# Validate Instagram URL
if not ("instagram.com" in msg or "instagr.am" in msg):
bot.sendMessage(chat_id=chat_id, text="β Please enter a valid Instagram URL.")
raise ReturnCommand()
# Show typing animation
bot.sendChatAction(chat_id=chat_id, action="typing")
bot.sendChatAction(chat_id=chat_id, action="typing")
# Encode URL and build API request
encoded_url = msg.replace(" ", "%20")
api_url = f"your_api_url={encoded_url}"
try:
response = HTTP.get(api_url, timeout=60, proxy=True)
# Handle API failure
if response.status_code != 200:
bot.sendMessage(
chat_id=chat_id,
text="β οΈ Sorry, we couldn't fetch the Instagram video. The service may be down or the URL is not supported."
)
raise ReturnCommand()
# Parse JSON safely
try:
data = response.json()
except:
bot.sendMessage(chat_id=chat_id, text="β οΈ Unable to process video information.")
raise ReturnCommand()
# Check for error from API
if data.get("error"):
bot.sendMessage(chat_id=chat_id, text="β Unable to fetch the video. Please check the link or try again later.")
raise ReturnCommand()
# Send video info
title = data.get("title", "Instagram Video")
thumbnail = data.get("thumbnail")
duration_sec = data.get("duration", 0)
duration_text = f"{duration_sec//60}m {duration_sec%60}s"
caption = f"π¬ {title}\nβ± Duration: {duration_text}"
if thumbnail:
bot.sendPhoto(chat_id=chat_id, photo=thumbnail, caption=caption)
else:
bot.sendMessage(chat_id=chat_id, text=caption)
# Send videos as playable files
for media in data.get("medias", []):
quality = media.get("quality") or media.get("type") or "Video"
url = media.get("url")
bot.sendVideo(chat_id=chat_id, video=url, caption=f"{quality} Quality", supports_streaming=True)
except:
# Generic friendly error
bot.sendMessage(chat_id=chat_id, text="β οΈ Sorry, something went wrong while fetching the Instagram video. Please try again later.")
π1
Developer MK
chat_id = message.chat.id msg = message.text.strip() # Check if user only typed /ig without a URL if msg.lower() == "/ig": bot.sendMessage( chat_id=chat_id, text="β Please provide an Instagram Video URL like this:\n/ig https://instagrβ¦
Instagram Video Download "typ" (Telebot creator code)
π₯1
#command /start
typ
#command "check"
chat_id = message.chat.id
user_id = message.from_user.id # <- must be user ID
# Save user ID
users = Bot.getData("all_users")
if users is None:
users = []
if message.chat.id not in users:
users.append(message.chat.id)
Bot.saveData("all_users", users)
# Get user's first name safely
if hasattr(message.from_user, "first_name"):
first_name = message.from_user.first_name
else:
first_name = "User"
# Function to check if user joined channel
def check():
channels = ['@web_developer_m_k']
for i in channels:
try:
member = bot.getChatMember(str(i), user_id)
if member.status == 'left':
return False
except:
return False # If API fails or invalid user
return True
if check() == True:
# Welcome message
welcome_text = f"* π Welcome! {first_name}*\n\n" \
"*To Use Chat Bot π¬* β _Just Type Your Message And Send Directly!_ \n\n"\
"Thank you for joining our channel.\n\n*Make sure to pin π this bot so you can access it anytime \n\n*"\
"_To explore all tools, type /menu or tap the\nππΌ three-line menu below_ "
bot.sendMessage(
chat_id=chat_id,
text=welcome_text,
parse_mode="markdown",
)
else:
# User not joined β show join button
keyboard = InlineKeyboardMarkup()
keyboard.row(
InlineKeyboardButton("π’ Join Channel", url="https://t.me/web_developer_m_k")
)
join_msg = bot.sendMessage(
chat_id=chat_id,
text="*π You Must Join Our Channel*\n\nTo use this bot, join the official channel first. Then send /start again.",
reply_markup=keyboard,
parse_mode="markdown"
)
# Save join message id
Bot.saveData(f"join_msg_{chat_id}", join_msg.message_id)#command check
typ
#command "check"
// Optional: delete the triggering message
if (request.data) {
Api.deleteMessage({
chat_id: request.message.chat.id,
message_id: request.message.message_id
});
}
// Check channel membership using Api.getChatMember
let channelUsername = "@web_developer_m_k"; // your channel
let userId = request.from.id;
let memberInfo = Api.getChatMember({
chat_id: channelUsername,
user_id: userId
});
`Telegram
Developer MK
π» Web Developer | π Sharing coding tutorials, π‘ tips & π§ Working Projects.
π¬ Community Chat: @Developer_mk_group
π© Contact me: @devoloper7
π¬ Community Chat: @Developer_mk_group
π© Contact me: @devoloper7
π2β€1π€£1
π’ New Update!
Our bot now has some new commands:
/video β Generate high-quality video
/imgtourl β Upload image & get direct URL
/filehost β Make direct download link for files
/Song β Search, download & play songs π΅
Try them out now π
@MK_DEV_AI_BOT
Our bot now has some new commands:
/video β Generate high-quality video
/imgtourl β Upload image & get direct URL
/filehost β Make direct download link for files
/Song β Search, download & play songs π΅
Try them out now π
@MK_DEV_AI_BOT
π2π₯°1π€£1
Ajj Ya Kal Ek Na Ek Turnament App Project File De Dunga Promise βπΌβ¨
β€10β‘1π₯±1
Developer MK
Ajj Ya Kal Ek Na Ek Turnament App Project File De Dunga Promise βπΌβ¨
100% Working File Dunga
15+ Reaction Kar do... π
15+ Reaction Kar do... π
β€12π2π₯±1
Media is too big
VIEW IN TELEGRAM
Firebace Ha@k using @MK_DEV_AI_BOT
Command
And
Not Work on HopWeb apps
Command
/firebaceurl And
/dataex to extract data using firebaceurl Not Work on HopWeb apps
β€2