ajax.zip
17.8 KB
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
bot.php
126.6 KB
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
JasTaysonBot (@AlijonovMe).zip
9.1 KB
Please open Telegram to view this post
VIEW IN TELEGRAM
@ByDevschat
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from ZUXA AKKAUNT SAVDO๐ฅท
๐ธ PREMIUM NARXLARI QUYIDA:โ 1oylik - 40.000 so'm (Profilga kirib)โ 3oylik - 163.000 so'm (Hadya orqali)โ 6oylik - 215.000 so'm (Hadya orqali)โญ 1yillik - 382.000 so'm (Hadya orqali)โญ 1yillik - 282.000 so'm (Profilga kirib)
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
header("Content-Type: application/json");
$url = "https://api.vidssave.com/api/contentsite_api/media/parse";
if (!isset($_GET['url'])) {
echo json_encode([
"status" => false,
"error" => "url berilmadi"
]);
exit;
}
$urll = $_GET['url'];
$post = http_build_query([
"auth" => "20250901majwlqo",
"domain" => "api-ak.vidssave.com",
"origin" => "source",
"link" => $urll
]);
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $post,
CURLOPT_HTTPHEADER => [
"Content-Type: application/x-www-form-urlencoded"
],
]);
$response = curl_exec($ch);
if(curl_error($ch)){
echo curl_error($ch);
exit;
}
curl_close($ch);
$data = json_decode($response, true);
echo json_encode(
$data,
JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE
);Please open Telegram to view this post
VIEW IN TELEGRAM
๐1
Forwarded from KartaAPI | News
Assalomu alaykum! ๐
๐ KartaAPI - Telegram botlar uchun avtomatik to'lov tizimi ishga tushirildi!
๐ณ Nima qiladi?
๐ Asosiy xususiyatlar:
โ๏ธ Qanday ulash mumkin?
๐ Web-sahifamiz: KartaAPI.uz
๐จโ๐ป Admin: @XasanovCoder
โ
Botni boshlash uchun: @KartaAPIBot
HUMO va UZCARD kartalariga tushgan to'lovlarni 5-30 soniyada aniqlaydi va botingizga webhook orqali yuboradi.
โข Real-time to'lov kuzatish!
โข 2 ta karta tizimi! (HUMO | UZCARD)
โข 24/7 ishlash vaqti!
โข 100% xavfsizlik!
1. @KartaAPIBot ni boshlang!
2. Do'kon yarating!
3. Provider tanlang! (HUMO/UZCARD)
4. API orqali to'lovlarni qabul qiling!
Please open Telegram to view this post
VIEW IN TELEGRAM
๐ฅ1
if(isset($update['message']['video']['t
$thumb = $update['message']['video']['thumbnail']['file_id'];
$token = "YOUR_API_TOKEN"; o'z tokeningiz
$file = json_decode(
file_get_contents("https://api.telegram.org/bot{$token}/getFile?file_id={$thumb}"),
true
);
if($file['ok']){
$url = "https://api.telegram.org/file/bot{$token}/" . $file['result']['file_path'];
$tmp = "thumb_" . time() . "_" . uniqid() . ".jpg";
file_put_contents($tmp, file_get_contents($url));
$ch = curl_init("https://api.telegram.org/bot{$token}/sendPhoto");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => [
'chat_id' => $cid,
'photo' => new CURLFile($tmp),
'caption' => "๐ธ Video rasmi"
]
]);
$result = curl_exec($ch);
curl_close($ch);
unlink($tmp);
}
}
Please open Telegram to view this post
VIEW IN TELEGRAM