Developer MK
362 subscribers
89 photos
10 videos
37 files
39 links
πŸ’» Web Developer | πŸ“š Sharing coding tutorials, πŸ’‘ tips & πŸ”§ Working Projects.
πŸ’¬ Community Chat: @Developer_mk_group
πŸ“© Contact me: @devoloper7
Download Telegram
Code coming soon in @source_code_4web


Chating girlfriend

My clone πŸ˜…
❀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
#command /start

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
});
`
πŸ‘Œ2❀1🀣1
Firebase url to realtime database ha@k
😍3
πŸ“’ 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
πŸ‘Ž2πŸ₯°1🀣1
I am Back πŸ”™
πŸŽ‰7❀3
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... πŸ’—
❀12πŸ†2πŸ₯±1
Free fire Turnament app code uploaded....

https://t.me/+GYamQe2QEPlhNTdl
😁2
Media is too big
VIEW IN TELEGRAM
Firebace Ha@k using @MK_DEV_AI_BOT
Command /firebaceurl

And /dataex to extract data using firebaceurl

Not Work on HopWeb apps
❀2