Sayfa 6/9 İlkİlk ... 45678 ... SonSon
44 sonuçtan 26 ile 30 arası

Konu: iptv bilgi sorgulama

  1. Teşekküre Gitİndir #26
    Teşekküre Git
    Üye fibeley - ait Kullanıcı Resmi (Avatar)

    Bilgi

    Gönderi Başına Git

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


  2. Teşekküre Gitİndir #27
    Teşekküre Git
    Moderatör köprülü - ait Kullanıcı Resmi (Avatar)

    Bilgi

    Gönderi Başına Git

    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. 4 kişi bu gönderi için köprülü üyemize teşekkür etti:

  4. Teşekküre Gitİndir #28
    Teşekküre Git
    Kıdemli Üye Murat84 - ait Kullanıcı Resmi (Avatar)

    Bilgi

    Gönderi Başına Git

    Alıntı köprülü Nickli Üyeden Alıntı Mesajı göster
    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. Teşekküre Gitİndir #29
    Teşekküre Git
    Moderatör köprülü - ait Kullanıcı Resmi (Avatar)

    Bilgi

    Gönderi Başına Git

    Alıntı Murat84 Nickli Üyeden Alıntı Mesajı göster
    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. köprülü üyemize teşekkür edenler:

  7. Teşekküre Gitİndir #30
    Teşekküre Git
    Kıdemli Üye Murat84 - ait Kullanıcı Resmi (Avatar)

    Bilgi

    Gönderi Başına Git

    Alıntı iz.35 Nickli Üyeden Alıntı Mesajı göster
    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. Murat84 üyemize teşekkür edenler:

Sayfa 6/9 İlkİlk ... 45678 ... SonSon

Konu Bilgileri

Bu Konuya Gözatan Kullanıcılar

Şu an 1 kullanıcı var. (0 üye ve 1 konuk)

Bu Konudaki Etiketler

Yetkileriniz

  • Konu Acma Yetkiniz Yok
  • Cevap Yazma Yetkiniz Yok
  • Eklenti Yükleme Yetkiniz Yok
  • Mesajınızı Değiştirme Yetkiniz Yok
  •