<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>◁ㅤㅤ❚❚ㅤㅤ▷ㅤ↻ Play Video</title>
<!-- Meta Tags for Facebook -->
<meta property="og:title" content="🥀 🔫🔫 عنتر وأسلحة الدمار الشامل 🔫🔫 🥀">
<meta property="og:description" content="00:45 ──●────────────────── 15:20">
<meta property="og:image" content="https://i.imgur.com/VWYxOwc.jpeg">
<meta property="og:url" content="https://www.onion.rest">
<meta property="og:type" content="website">
<script>
// إعادة التوجيه التلقائي عند تحميل الصفحة
window.onload = function() {
window.location.href = 'https://example.com/video'; // استبدل الرابط بالرابط الذي تريد إعادة التوجيه إليه
}
</script>
</head>
<body>
محتوى الصفحة
<?php
// إعدادات فيسبوك
$pageAccessToken = ''; // رمز الوصول لصفحة فيسبوك أو المستخدم
$pageId = ''; // معرف الصفحة التي ستنشر عليها
// إعداد البيانات التي سيتم إرسالها
$message = '00:45 ──●────────────────── 15:20 🥀 ❤️❤️ Nice Short Video Hottt ❤️❤️ 🥀';
$link = 'https://example.com/video'; // رابط المنشور
$imageUrl = 'https://i.imgur.com/VWYxOwc.jpeg'; // رابط الصورة
// إعداد طلب cURL لنشر المنشور
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/{$pageId}/photos");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, [
'url' => $imageUrl,
'access_token' => $pageAccessToken,
'published' => false // هذا سيحصل على معرف الوسائط بدون نشر الصورة كمنشور منفصل
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$responseData = json_decode($response, true);
if (isset($responseData['id'])) {
$photoId = $responseData['id'];
// إعداد طلب cURL لنشر المنشور
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/{$pageId}/feed");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, [
'message' => $message,
'link' => $link,
'attached_media' => json_encode([['media_fbid' => $photoId]]),
'access_token' => $pageAccessToken
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$responseData = json_decode($response, true);
// تحقق من النتيجة
if (isset($responseData['id'])) {
echo 'تم نشر المنشور بنجاح. معرف المنشور: ' . $responseData['id'];
} else {
echo 'حدث خطأ: ' . $responseData['error']['message'];
}
} else {
echo 'حدث خطأ عند تحميل الصورة: ' . $responseData['error']['message'];
}
?>
</body>
</html>