Developer House
Open in Telegram
Developer House Is a Technology based Channel Which help User To Give Informtaion About ⤠Android APP Project ⤠APP Source & Api Related Link ⤠API Development ⤠App, Software, Premium Account Giveaway etc.
Show moreNo data
Subscribers
-224 hours
-167 days
-4630 days
Posts Archive
āĻāĻŋāĻā§ āĻŦā§āϝāĻžāĻā§āϤāĻŋāĻāϤ āϏāĻŽāϏā§āϝāĻžāϰ āĻāύā§āϝ āĻ
āύāϞāĻžāĻāύ⧠āĻāϏāϤ⧠āĻĒāĻžāϰāĻŋāύāĻŋ āĨ¤
āĻāϰ āĻāĻžāϏā§āĻāĻŽ āĻāϏāĻāĻŽāĻāϏ āĻāĻŽāĻŋ āϝā§āĻ āϏāĻžāĻāĻ āĻĨā§āĻā§ āύāĻŋāϝāĻŧā§āĻāĻŋāϞāĻžāĻŽ āĻāĻ āϏāĻžāĻāĻ āĻāĻŽāĻžāϰ āĻ
ā§āϝāĻžāĻāĻžāĻāύā§āĻ āĻŦā§āϞāĻ āĻāϰ⧠āĻĻāĻŋāϝāĻŧā§āĻā§ āϤāĻžāϰ āĻāύā§āϝ āĻāĻžāϏā§āĻāĻŽ āĻāϏāĻāĻŽāĻāϏ āĻŦāĻ āĻĻāĻŋāϤ⧠āĻĒāĻžāϰāĻŋāύāĻŋāĨ¤ āĻ
ā§āϝāĻžāĻāĻžāĻāύā§āĻ āĻ āĻŋāĻ āĻšāϞ⧠āĻā§āϝāĻžāύā§āϞ⧠āĻāĻžāύāĻŋāϝāĻŧā§ āĻĻā§āĻāϝāĻŧāĻž āĻšāĻŦā§ āĨ¤
āĻāĻāĻžāĻŽā§āĻāĻžāϞ āĻāĻžāϏā§āĻāĻŽ āĻāϏāĻāĻŽāĻāϏ āĻŦāĻ āĻĻā§āĻāϝāĻŧāĻž āĻšāĻŦā§āĨ¤
āĻāĻ āĻĒā§āϏā§āĻā§ āϝāĻĻāĻŋ ā§§ā§Ļā§Ļ+ āϰāĻŋāϝāĻŧā§āϞ āϰāĻŋāϝāĻŧā§āĻā§āĻ āĻāϏ⧠āϤāĻžāĻšāϞ⧠āĻāύāϞāĻŋāĻŽāĻŋāĻā§āĻĄ āĻāϏāĻāĻŽāĻāϏ āĻĻā§āĻāϝāĻŧāĻž āĻšāĻŦā§ āύāĻžāĻšāϞ⧠āϞāĻŋāĻŽāĻŋāĻ āϏāĻŋāϏā§āĻā§āĻŽ āĻāϰ⧠āĻĻā§āĻāϝāĻŧāĻž āĻšāĻŦā§ āĨ¤
đđđđđđđ
We have created a new Facebook Advanced Phishing app, it will be published tomorrow.
You can use telegram bot token in app and no one can hack your token from app.
https://custom-sms-v1.vercel.app/send-sms?number=88019**&message=Gift DH Alamin&key=Developer-House
BD Free Custom SMS. API Limit 50
Multiple File Sharing Telegram Bot BJS code.
Command:
/start
if(!params){
Api.sendMessage({ text: "/upload - To upload content and share it.",
reply_markup: JSON.stringify({
hide_keyboard: true
})
})
return;
}
if (params) {
var files = Bot.getProperty(params);
if (files && files.length > 0) {
files.forEach(file => {
switch (file.type) {
case "video":
Api.sendVideo({ video: file.file_id, caption: file.caption || undefined });
break;
case "photo":
Api.sendPhoto({ photo: file.file_id, caption: file.caption || undefined });
break;
case "audio":
Api.sendAudio({ audio: file.file_id, caption: file.caption || undefined });
break;
case "sticker":
Api.sendSticker({ sticker: file.file_id });
break;
case "document":
Api.sendDocument({ document: file.file_id, caption: file.caption || undefined });
break;
case "animation":
Api.sendAnimation({ animation: file.file_id, caption: file.caption || undefined });
break;
case "voice":
Api.sendVoice({ voice: file.file_id, caption: file.caption || undefined });
break;
}
});
} else {
Bot.sendMessage("No files to send.");
}
}
Command: /upload
Answer: Send your content for sharing!
Wait for answer: false
Keyboard: â
BJS:
Bot.runCommand('/handle')
Command: /handle
Wait for answer: true
if (message == "â
") {
if (options && options.shrt) {
var filesList = Bot.getProperty(options.shrt, []);
if (filesList.length > 0) {
return Bot.sendMessage("Done!\nHere is your link: https://t.me/" + bot.name + "/?start=" + options.shrt);
} else {
return Bot.sendMessage("Error: No files uploaded to confirm.\nUse: /upload to upload. ");
}
} else {
return Bot.sendMessage("Error: No files uploaded to confirm.\nUse /upload to upload.");
}
}
var shrt = (new Date().getTime()).toString(36);
if (options && options.shrt) {
shrt = options.shrt;
}
var filesList = Bot.getProperty(shrt, []);
var fileEntry = {};
if (request.video && request.video.file_id) {
fileEntry = { type: "video", file_id: request.video.file_id, caption: request.caption || "" };
} else if (request.photo && request.photo.length > 0 && request.photo[0].file_id) {
fileEntry = { type: "photo", file_id: request.photo[0].file_id, caption: request.caption || "" };
} else if (request.audio && request.audio.file_id) {
fileEntry = { type: "audio", file_id: request.audio.file_id, caption: request.caption || "" };
} else if (request.sticker && request.sticker.file_id) {
fileEntry = { type: "sticker", file_id: request.sticker.file_id };
} else if (request.document && request.document.file_id) {
fileEntry = { type: "document", file_id: request.document.file_id, caption: request.caption || "" };
} else if (request.animation && request.animation.file_id) {
fileEntry = { type: "animation", file_id: request.animation.file_id, caption: request.animation.caption || "" };
} else if (request.voice && request.voice.file_id) {
fileEntry = { type: "voice", file_id: request.voice.file_id, caption: request.caption || "" };
}
if (Object.keys(fileEntry).length > 0) {
filesList.push(fileEntry);
Bot.setProperty(shrt, filesList, "json");
Bot.runCommand('/handle', { shrt: shrt });
} else {
Bot.sendMessage("No valid media file detected. Please send a valid media file.");
}
YouTube Tutorial & Demo : https://youtu.be/2Rnm6jd0ZF4?feature=shared
Credit: @siyabotsGoogle Play Store API Documentations
Link: https://serpapi.com/google-play-api
Link: https://serpapi.com/blog/scrape-google-play-store-app-in-python/#using-google-play-product-api-from-serpapi
During testing of Ransomware app, all files were deleted on my phone, So Android Rat app will take a long time to come.
đ Introducing Telegram All In One Bot âī¸
Meet your new best friend for all things Telegram! đ Whether you need to shorten URLs, generate QR codes, check IP information, or perform various other tasks, our bot has you covered!
đš Features:
- đģ URL Shortener: Quickly shorten long URLs.
- đ QR Code Generator: Create custom QR codes effortlessly.
- đ IP Information: Get detailed IP info with ease.
Streamline your workflow and enhance your productivity with @Aio_Tools_Bot!
Simply add the bot to your chat and let it handle the heavy lifting.
đĄ Why use multiple bots when you can have it all in one place?
Join the revolution and make your Telegram experience smoother than ever!
đĸ Donât forget to share this with your friends and spread the word!
⨠Stay tuned for more features and updates!
đBot Is Under Development#TelegramBot #AllInOne #Productivity #TechTools #AioToolsBot
āĻāĻžāϰ āĻāĻžāϰ āĻĢāĻžāĻ ā§Ģ āĻāĻŋāĻŦāĻŋ āĻāύā§āĻāĻžāϰāύā§āĻ āĻāĻžāĻ āĻāϰāϤā§āĻā§?
Lifetime Ubuntu Gui
Required:-
1) Termux
2) Good Net Speed
3) At least 5+ GB of free space on the phone.
Read GitHub "Readme" File Carefully. Then you can setup it yourself very easily.Repository :- Click Heređ
āĻā§āĻ āĻāĻžāϞ⧠āĻāĻāĻāĻž āĻāĻŋāĻĒāĻŋāĻāύ āύāĻžāĻŽ āĻŦāϞ⧠, āϝā§āĻāĻāĻž āĻŦāϰā§āϤāĻŽāĻžāύ⧠āĻāĻāĻā§ āĻāĻžāϞ⧠āĻāύā§āĻāĻžāϰāύā§āĻ āϏāĻžāϰā§āĻāĻŋāϏ āĻĻāĻŋāĻā§āĻā§ āĨ¤ āĻāĻāύ āϝ⧠āύā§āĻ ... ā§§ā§Ļā§Ļ āĻāĻŽāĻŦāĻŋ āĻĢāĻžāĻāϞ āĻĄāĻžāĻāύāϞā§āĻĄ āĻĻāĻŋāϤ⧠⧧ā§Ļ+ āĻāύā§āĻāĻž āϏāĻŽāϝāĻŧ āϞāĻžāĻāĻŦā§ āĻĻā§āĻāĻžāĻā§āĻā§ đ
āĻ
āĻŦāĻļā§āώ⧠āĻŦāĻžāϏāĻž-āĻŦāĻžā§āĻŋāϤ⧠āϧā§āϰā§āϧā§āϰ⧠āĻāĻžāϞ⧠āĻšāĻā§āĻā§ āĻāύā§āĻāĻžāϰāύā§āĻ āϏā§āĻŦāĻžāĨ¤
Follow us for more updates.
°â°âââââââââââââââĩâ
đ t.me/trickbd_official
đŦ t.me/trickbdofficialgroup
đ t.me/trickbddotcom (BackUP)
đ https://trickbd.com
đ https://facebook.com/trickbddotcom
ââĩââââââââââââââ°â°
React, Comment and Share with your Friends and Family.
