Seite 6 von 9 ErsteErste ... 45678 ... LetzteLetzte
Ergebnis 26 bis 30 von 44

Thema: iptv bilgi sorgulama

  1. Gehen Sie zu DankeHerunterladen #26
    Gehen Sie zu Danke
    Üye Avatar von fibeley

    Info

    Gehen Sie zum Anfang des Beitrags

    ............


  2. Gehen Sie zu DankeHerunterladen #27
    Gehen Sie zu Danke
    Moderatör Avatar von köprülü

    Info

    Gehen Sie zum Anfang des Beitrags

    Buyrun ilk html olarak yaptığım Halide budur murat usta bunun üzerinden test yapabilir sin local olarak ama Ben kendi apk ma yüklediğim de protokol sorunu ile karşılaştım http ve https protokol sorunları ile


    <!DOCTYPE html>
    <html lang="tr">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>IPTV Bilgi Alma</title>
    <style>
    body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f0f4f7;
    }
    #iptvForm {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-bottom: 20px;
    }
    #iptvForm input, #iptvForm button {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    }
    #iptvForm button {
    cursor: pointer;
    border: none;
    }
    #getInfoButton {
    background-color: #007bff;
    color: white;
    }
    #getInfoButton:hover {
    background-color: #0056b3;
    }
    #resetButton {
    background-color: #ff4d4d;
    color: white;
    }
    #resetButton:hover {
    background-color: #e60000;
    }
    #resultsContainer {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    max-height: 400px;
    margin-top: 20px;
    }
    #results {
    white-space: pre-wrap;
    font-size: 16px;
    }
    .error-message {
    color: red;
    font-weight: bold;
    }
    #loading {
    display: none;
    font-size: 16px;
    color: #007bff;
    }
    #splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f4f7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #007bff;
    z-index: 9999;
    transition: opacity 0.5s ease;
    }
    .hidden {
    opacity: 0;
    pointer-events: none;
    }
    @media (max-width: 600px) {
    body {
    padding: 10px;
    }
    #resultsContainer {
    padding: 10px;
    font-size: 14px;
    }
    }
    </style>
    </head>
    <body>
    <div id="splashScreen">KÖPRÜLÜ</div>
    <h1>IPTV Bilgi Alma</h1>
    <form id="iptvForm">
    <input type="text" id="iptvLink" placeholder="IPTV M3U Bağlantısı Yapıştırın">
    <button type="button" id="getInfoButton" onclick="getIptvInfo()">Bilgileri Al</button>
    <button type="button" id="resetButton" onclick="resetForm()">Sıfırla</button>
    </form>
    <div id="loading">Yükleniyor...</div>
    <div id="resultsContainer">
    <pre id="results"></pre>
    </div>

    <script>
    document.addEventListener('DOMContentLoaded', function() {
    setTimeout(function() {
    document.getElementById('splashScreen').classList. add('hidden');
    }, 3000);
    });

    function getIptvInfo() {
    document.getElementById('loading').style.display = 'block';
    document.getElementById('results').textContent = '';

    const iptvLink = document.getElementById('iptvLink').value;
    const modifiedLink = modifyLink(iptvLink);
    fetch(modifiedLink)
    .then(response => {
    if (!response.ok) {
    throw new Error('Ağ yanıtı geçerli değil');
    }
    return response.json();
    })
    .then(data => {
    if (Object.keys(data).length === 0) {
    throw new Error('Bağlantı çalışmıyor veya geçerli veri döndürülemiyor');
    }
    const translatedData = translateAndFormatJSON(data);
    const formattedData = formatData(translatedData);
    document.getElementById('results').innerHTML = formattedData;
    })
    .catch(error => {
    document.getElementById('results').innerHTML = `<span class="error-message">Bir hata oluştu: ${error.message}</span>`;
    })
    .finally(() => {
    document.getElementById('loading').style.display = 'none';
    });
    }

    function resetForm() {
    document.getElementById('iptvLink').value = '';
    document.getElementById('results').textContent = '';
    document.getElementById('loading').style.display = 'none';
    }

    function modifyLink(link) {
    try {
    const url = new URL(link);
    url.pathname = '/player_api.php';
    return url.toString();
    } catch (error) {
    throw new Error('Geçersiz URL');
    }
    }

    function translateAndFormatJSON(obj) {
    const translations = {
    "user_info": "Kullanıcı Bilgileri",
    "username": "Kullanıcı Adı",
    "password": "Şifre",
    "message": "Mesaj",
    "auth": "Yetki",
    "status": "Durum",
    "exp_date": "Bitiş Tarihi",
    "is_trial": "Deneme",
    "active_cons": "Aktif Bağlantılar",
    "created_at": "Oluşturulma Tarihi",
    "max_connections": "Maksimum Bağlantı",
    "allowed_output_formats": "İzin Verilen Çıkış Formatları",
    "server_info": "Sunucu Bilgileri",
    "xui": "XUI",
    "version": "Versiyon",
    "revision": "Revizyon",
    "url": "URL",
    "port": "Port",
    "https_port": "HTTPS Port",
    "server_protocol": "Sunucu Protokolü",
    "rtmp_port": "RTMP Port",
    "timestamp_now": "Geçerli Zaman Damgası",
    "time_now": "Şu Anki Zaman",
    "timezone": "Zaman Dilimi"
    };

    if (typeof obj === 'object' && obj !== null) {
    for (let key in obj) {
    if (obj.hasOwnProperty(key)) {
    let translatedKey = translations[key] || key;
    if (translatedKey === "Oluşturulma Tarihi" || translatedKey === "Bitiş Tarihi" || translatedKey === "Geçerli Zaman Damgası") {
    obj[translatedKey] = convertTimestampToDate(obj[key]);
    } else if (typeof obj[key] === 'object') {
    obj[translatedKey] = translateAndFormatJSON(obj[key]);
    } else {
    obj[translatedKey] = obj[key];
    }
    if (translatedKey !== key) {
    delete obj[key];
    }
    }
    }
    }
    return obj;
    }

    function convertTimestampToDate(timestamp) {
    if (!timestamp) return null;
    const date = new Date(timestamp * 1000);
    const day = date.getDate().toString().padStart(2, '0');
    const month = (date.getMonth() + 1).toString().padStart(2, '0');
    const year = date.getFullYear();
    const hours = date.getHours().toString().padStart(2, '0');
    const minutes = date.getMinutes().toString().padStart(2, '0');
    const seconds = date.getSeconds().toString().padStart(2, '0');
    return `${day}.${month}.${year} ${hours}:${minutes}:${seconds}`;
    }

    function formatData(data) {
    const userInfo = data["Kullanıcı Bilgileri"];
    const serverInfo = data["Sunucu Bilgileri"];

    return `
    📡 DURUM: ${userInfo["Durum"]}
    ?? PROTOKOL: ${serverInfo["Sunucu Protokolü"]}
    🌐 SUNUCU: ${serverInfo["URL"]}
    🚪 PORT: ${serverInfo["Port"]}
    🚪 PORT HTTPS: ${serverInfo["HTTPS Port"]}
    🚪 PORT RTMP: ${serverInfo["RTMP Port"]}
    👤 KULLANICI: ${userInfo["Kullanıcı Adı"]}
    🔑 ŞİFRE: ${userInfo["Şifre"]}
    📆 OLUŞUM TARİHİ: ${userInfo["Oluşturulma Tarihi"]}
    📆 BİTİŞ TARİHİ: ${userInfo["Bitiş Tarihi"]}
    👩 AKTİF BAĞLANTI: ${userInfo["Aktif Bağlantılar"]}
    👪 MAX. BAĞLANTI: ${userInfo["Maksimum Bağlantı"]}
    🕓 ŞİMDİKİ ZAMAN: ${serverInfo["Şu Anki Zaman"]}
    📂 LİSTE FORMATLARI: ${userInfo["İzin Verilen Çıkış Formatları"].join(", ")}
    🌍 ZAMAN DİLİMİ: ${serverInfo["Zaman Dilimi"]}
    `;
    }
    </script>
    </body>
    </html>


  3. Die folgenden 4 Benutzer sagen Danke zu köprülü für diesen nützlichen Beitrag:

  4. Gehen Sie zu DankeHerunterladen #28
    Gehen Sie zu Danke
    Kıdemli Üye Avatar von Murat84

    Info

    Gehen Sie zum Anfang des Beitrags

    Zitat Zitat von köprülü Beitrag anzeigen
    Buyrun ilk html olarak yaptığım Halide budur murat usta bunun üzerinden test yapabilir sin local olarak ama Ben kendi apk ma yüklediğim de protokol sorunu ile karşılaştım http ve https protokol sorunları ile


    <!DOCTYPE html>
    <html lang="tr">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>IPTV Bilgi Alma</title>
    <style>
    body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f0f4f7;
    }
    #iptvForm {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-bottom: 20px;
    }
    #iptvForm input, #iptvForm button {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    }
    #iptvForm button {
    cursor: pointer;
    border: none;
    }
    #getInfoButton {
    background-color: #007bff;
    color: white;
    }
    #getInfoButton:hover {
    background-color: #0056b3;
    }
    #resetButton {
    background-color: #ff4d4d;
    color: white;
    }
    #resetButton:hover {
    background-color: #e60000;
    }
    #resultsContainer {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    max-height: 400px;
    margin-top: 20px;
    }
    #results {
    white-space: pre-wrap;
    font-size: 16px;
    }
    .error-message {
    color: red;
    font-weight: bold;
    }
    #loading {
    display: none;
    font-size: 16px;
    color: #007bff;
    }
    #splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f4f7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #007bff;
    z-index: 9999;
    transition: opacity 0.5s ease;
    }
    .hidden {
    opacity: 0;
    pointer-events: none;
    }
    @media (max-width: 600px) {
    body {
    padding: 10px;
    }
    #resultsContainer {
    padding: 10px;
    font-size: 14px;
    }
    }
    </style>
    </head>
    <body>
    <div id="splashScreen">KÖPRÜLÜ</div>
    <h1>IPTV Bilgi Alma</h1>
    <form id="iptvForm">
    <input type="text" id="iptvLink" placeholder="IPTV M3U Bağlantısı Yapıştırın">
    <button type="button" id="getInfoButton" onclick="getIptvInfo()">Bilgileri Al</button>
    <button type="button" id="resetButton" onclick="resetForm()">Sıfırla</button>
    </form>
    <div id="loading">Yükleniyor...</div>
    <div id="resultsContainer">
    <pre id="results"></pre>
    </div>

    <script>
    document.addEventListener('DOMContentLoaded', function() {
    setTimeout(function() {
    document.getElementById('splashScreen').classList. add('hidden');
    }, 3000);
    });

    function getIptvInfo() {
    document.getElementById('loading').style.display = 'block';
    document.getElementById('results').textContent = '';

    const iptvLink = document.getElementById('iptvLink').value;
    const modifiedLink = modifyLink(iptvLink);
    fetch(modifiedLink)
    .then(response => {
    if (!response.ok) {
    throw new Error('Ağ yanıtı geçerli değil');
    }
    return response.json();
    })
    .then(data => {
    if (Object.keys(data).length === 0) {
    throw new Error('Bağlantı çalışmıyor veya geçerli veri döndürülemiyor');
    }
    const translatedData = translateAndFormatJSON(data);
    const formattedData = formatData(translatedData);
    document.getElementById('results').innerHTML = formattedData;
    })
    .catch(error => {
    document.getElementById('results').innerHTML = `<span class="error-message">Bir hata oluştu: ${error.message}</span>`;
    })
    .finally(() => {
    document.getElementById('loading').style.display = 'none';
    });
    }

    function resetForm() {
    document.getElementById('iptvLink').value = '';
    document.getElementById('results').textContent = '';
    document.getElementById('loading').style.display = 'none';
    }

    function modifyLink(link) {
    try {
    const url = new URL(link);
    url.pathname = '/player_api.php';
    return url.toString();
    } catch (error) {
    throw new Error('Geçersiz URL');
    }
    }

    function translateAndFormatJSON(obj) {
    const translations = {
    "user_info": "Kullanıcı Bilgileri",
    "username": "Kullanıcı Adı",
    "password": "Şifre",
    "message": "Mesaj",
    "auth": "Yetki",
    "status": "Durum",
    "exp_date": "Bitiş Tarihi",
    "is_trial": "Deneme",
    "active_cons": "Aktif Bağlantılar",
    "created_at": "Oluşturulma Tarihi",
    "max_connections": "Maksimum Bağlantı",
    "allowed_output_formats": "İzin Verilen Çıkış Formatları",
    "server_info": "Sunucu Bilgileri",
    "xui": "XUI",
    "version": "Versiyon",
    "revision": "Revizyon",
    "url": "URL",
    "port": "Port",
    "https_port": "HTTPS Port",
    "server_protocol": "Sunucu Protokolü",
    "rtmp_port": "RTMP Port",
    "timestamp_now": "Geçerli Zaman Damgası",
    "time_now": "Şu Anki Zaman",
    "timezone": "Zaman Dilimi"
    };

    if (typeof obj === 'object' && obj !== null) {
    for (let key in obj) {
    if (obj.hasOwnProperty(key)) {
    let translatedKey = translations[key] || key;
    if (translatedKey === "Oluşturulma Tarihi" || translatedKey === "Bitiş Tarihi" || translatedKey === "Geçerli Zaman Damgası") {
    obj[translatedKey] = convertTimestampToDate(obj[key]);
    } else if (typeof obj[key] === 'object') {
    obj[translatedKey] = translateAndFormatJSON(obj[key]);
    } else {
    obj[translatedKey] = obj[key];
    }
    if (translatedKey !== key) {
    delete obj[key];
    }
    }
    }
    }
    return obj;
    }

    function convertTimestampToDate(timestamp) {
    if (!timestamp) return null;
    const date = new Date(timestamp * 1000);
    const day = date.getDate().toString().padStart(2, '0');
    const month = (date.getMonth() + 1).toString().padStart(2, '0');
    const year = date.getFullYear();
    const hours = date.getHours().toString().padStart(2, '0');
    const minutes = date.getMinutes().toString().padStart(2, '0');
    const seconds = date.getSeconds().toString().padStart(2, '0');
    return `${day}.${month}.${year} ${hours}:${minutes}:${seconds}`;
    }

    function formatData(data) {
    const userInfo = data["Kullanıcı Bilgileri"];
    const serverInfo = data["Sunucu Bilgileri"];

    return `
    📡 DURUM: ${userInfo["Durum"]}
    ?? PROTOKOL: ${serverInfo["Sunucu Protokolü"]}
    🌐 SUNUCU: ${serverInfo["URL"]}
    🚪 PORT: ${serverInfo["Port"]}
    🚪 PORT HTTPS: ${serverInfo["HTTPS Port"]}
    🚪 PORT RTMP: ${serverInfo["RTMP Port"]}
    👤 KULLANICI: ${userInfo["Kullanıcı Adı"]}
    🔑 ŞİFRE: ${userInfo["Şifre"]}
    📆 OLUŞUM TARİHİ: ${userInfo["Oluşturulma Tarihi"]}
    📆 BİTİŞ TARİHİ: ${userInfo["Bitiş Tarihi"]}
    👩 AKTİF BAĞLANTI: ${userInfo["Aktif Bağlantılar"]}
    👪 MAX. BAĞLANTI: ${userInfo["Maksimum Bağlantı"]}
    🕓 ŞİMDİKİ ZAMAN: ${serverInfo["Şu Anki Zaman"]}
    📂 LİSTE FORMATLARI: ${userInfo["İzin Verilen Çıkış Formatları"].join(", ")}
    🌍 ZAMAN DİLİMİ: ${serverInfo["Zaman Dilimi"]}
    `;
    }
    </script>
    </body>
    </html>
    Bir hata oluştu: Maximum call stack size exceeded

    Bu yazı geliyor bende..


  5. Gehen Sie zu DankeHerunterladen #29
    Gehen Sie zu Danke
    Moderatör Avatar von köprülü

    Info

    Gehen Sie zum Anfang des Beitrags

    Zitat Zitat von Murat84 Beitrag anzeigen
    Bir hata oluştu: Maximum call stack size exceeded

    Bu yazı geliyor bende..
    Apk ya ekledin ise yine protokol hatasından olabilir yada bağlantı gerçekten aktif değil se olabilir


  6. The Following User Says Thank You to köprülü For This Useful Post:

  7. Gehen Sie zu DankeHerunterladen #30
    Gehen Sie zu Danke
    Kıdemli Üye Avatar von Murat84

    Info

    Gehen Sie zum Anfang des Beitrags

    Zitat Zitat von iz.35 Beitrag anzeigen
    buda benden olsun.14 bin iptv var.köprülü usamızın yaptıgı pogramda test edin
    gizli içerik alıntı yapılamaz
    iz.35 kardeşim 😯👏


  8. The Following User Says Thank You to Murat84 For This Useful Post:

Seite 6 von 9 ErsteErste ... 45678 ... LetzteLetzte

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Stichworte

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •