Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Pegelwerte Fritzbox 6490 Cable auslesen?

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.3k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.9k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.3k

Pegelwerte Fritzbox 6490 Cable auslesen?

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
199 Beiträge 20 Kommentatoren 44.6k Aufrufe 20 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • D DasKind91

    @ichderarnd

    Ich habe das Script aus diesem Post benutzt und die Logindaten sowie die Adresse geändert, halt von fritz.box auf meine IP.

    Mein Problem ist, dass ich mit allen Skripten die hier im Post stehen nur folgende Fehler bekomme:

    javascript.0	19:48:41.806	error	script.js.common.Netzwerk.Kabel-Werte: ReferenceError: request is not defined
    javascript.0	19:48:41.806	error	at loginAndGetSID (script.js.common.Netzwerk.Kabel-Werte:163:5)
    javascript.0	19:48:41.806	error	at script.js.common.Netzwerk.Kabel-Werte:448:1
    javascript.0	19:48:41.806	error	at script.js.common.Netzwerk.Kabel-Werte:472:3
    

    Ich habe eine Fritz Box 6660 Cable mit Fritz OS 7.57

    Ich hoffe du oder jemand anderes kann mir helfen, Javascript ist noch nicht so meins....

    Vielen Dank!

    I Offline
    I Offline
    ichderarnd
    schrieb am zuletzt editiert von
    #162

    @daskind91
    Das hängt offensichtlich mit dem etwas weiter oben beschriebenen "request" zusammen, dass von neueren Javascript Versionen nicht mehr unterstützt wird. Ich stelle das gerade auf die axios Library um und werde die aktualisierte Version hier posten.

    D MartinPM 2 Antworten Letzte Antwort
    0
    • I ichderarnd

      @daskind91
      Das hängt offensichtlich mit dem etwas weiter oben beschriebenen "request" zusammen, dass von neueren Javascript Versionen nicht mehr unterstützt wird. Ich stelle das gerade auf die axios Library um und werde die aktualisierte Version hier posten.

      D Offline
      D Offline
      DasKind91
      schrieb am zuletzt editiert von
      #163

      @ichderarnd

      Okay, perfekt vielen Dank für deine Bemühungen

      1 Antwort Letzte Antwort
      0
      • I ichderarnd

        @daskind91
        Das hängt offensichtlich mit dem etwas weiter oben beschriebenen "request" zusammen, dass von neueren Javascript Versionen nicht mehr unterstützt wird. Ich stelle das gerade auf die axios Library um und werde die aktualisierte Version hier posten.

        MartinPM Offline
        MartinPM Offline
        MartinP
        schrieb am zuletzt editiert von MartinP
        #164

        @ichderarnd

        Habe schon angefangen, nur mit dem httpPost in getCableModemChannelInfosV2()
        gibt es Probleme Auskommentiert der Request, und darunter der httpPost...

        //    var options = {
        //        url: docsisURL,
        //        method: 'POST',
        //        headers: {
        //            'Content-Type': 'application/x-www-form-urlencoded'
        //        },
        //        body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
        //    }
        //    request(options, function(error, response, body) {
              httpPost(docsisURL, 
                {
                    title : 'channels',
                    body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew=',
                    user_id : '1'
                }, 
                {
        
                    timeout: 2000,
                    headers: {
                       'Content-Type': 'application/x-www-form-urlencoded'
                    },
                },
                (error, response) => {
                if (!error && response.statusCode == 200) {
                    log ('status ' + response.statusCode);
                    log ('headers ' + response.headers);
                    log ('data: ' + response.data);
                    const body = response.data;
                    tableData = JSON.parse(body);
                    if(tableData){
        
        

        Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
        Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
        kernel Linux pve 6.8.12-15-pve
        6 GByte RAM für den Container
        Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
        Remote-Access über Wireguard der Fritzbox

        MartinPM F 2 Antworten Letzte Antwort
        0
        • MartinPM MartinP

          @ichderarnd

          Habe schon angefangen, nur mit dem httpPost in getCableModemChannelInfosV2()
          gibt es Probleme Auskommentiert der Request, und darunter der httpPost...

          //    var options = {
          //        url: docsisURL,
          //        method: 'POST',
          //        headers: {
          //            'Content-Type': 'application/x-www-form-urlencoded'
          //        },
          //        body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
          //    }
          //    request(options, function(error, response, body) {
                httpPost(docsisURL, 
                  {
                      title : 'channels',
                      body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew=',
                      user_id : '1'
                  }, 
                  {
          
                      timeout: 2000,
                      headers: {
                         'Content-Type': 'application/x-www-form-urlencoded'
                      },
                  },
                  (error, response) => {
                  if (!error && response.statusCode == 200) {
                      log ('status ' + response.statusCode);
                      log ('headers ' + response.headers);
                      log ('data: ' + response.data);
                      const body = response.data;
                      tableData = JSON.parse(body);
                      if(tableData){
          
          
          MartinPM Offline
          MartinPM Offline
          MartinP
          schrieb am zuletzt editiert von
          #165

          @martinp Noch eine Frage.

          Ich habe mich vor längerer Zeit sozusagen "geforkt" vom Quellcode hier...

          Bei den Experimenten habe ich festgestellt. dass der Schedule, der am Ende des Script-Codes aufgerufen wird anscheinend weiter aufgerufen wird, auch wenn man das Script selber gestoppt hat ...

          Startet man das Script nach Änderungen erneut, wird ein weiterer Schedule erzeugt ....

          
          schedule("* * * * *", function() {                          // Zu jeder vollen Minute die Fritzbox DOCSIS-Daten abfragen
              getCableModemChannelInfosV2();
          });
          
          
          

          Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
          Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
          kernel Linux pve 6.8.12-15-pve
          6 GByte RAM für den Container
          Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
          Remote-Access über Wireguard der Fritzbox

          1 Antwort Letzte Antwort
          0
          • MartinPM MartinP

            @ichderarnd

            Habe schon angefangen, nur mit dem httpPost in getCableModemChannelInfosV2()
            gibt es Probleme Auskommentiert der Request, und darunter der httpPost...

            //    var options = {
            //        url: docsisURL,
            //        method: 'POST',
            //        headers: {
            //            'Content-Type': 'application/x-www-form-urlencoded'
            //        },
            //        body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
            //    }
            //    request(options, function(error, response, body) {
                  httpPost(docsisURL, 
                    {
                        title : 'channels',
                        body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew=',
                        user_id : '1'
                    }, 
                    {
            
                        timeout: 2000,
                        headers: {
                           'Content-Type': 'application/x-www-form-urlencoded'
                        },
                    },
                    (error, response) => {
                    if (!error && response.statusCode == 200) {
                        log ('status ' + response.statusCode);
                        log ('headers ' + response.headers);
                        log ('data: ' + response.data);
                        const body = response.data;
                        tableData = JSON.parse(body);
                        if(tableData){
            
            
            F Offline
            F Offline
            fastfoot
            schrieb am zuletzt editiert von
            #166

            @martinp es könnte helfen body: durch data: zu ersetzen

            iobroker läuft unter Docker auf QNAP TS-451+
            SkriptRecovery: https://forum.iobroker.net/post/930558

            MartinPM 1 Antwort Letzte Antwort
            0
            • F fastfoot

              @martinp es könnte helfen body: durch data: zu ersetzen

              MartinPM Offline
              MartinPM Offline
              MartinP
              schrieb am zuletzt editiert von
              #167

              @fastfoot Das hat auch nicht geholfen ...

              2024-07-04 07:22:00.197 - info: javascript.0 (33499) script.js.Fritzbox.DOCSISV01: status 200
              2024-07-04 07:22:00.198 - info: javascript.0 (33499) script.js.Fritzbox.DOCSISV01: headers cache-control: no-cache, no-cache, no-store, must-revalidate
              connection: close
              content-type: text/html; charset=utf-8
              date: Thu, 04 Jul 2024 05:22:00 GMT
              expires: -1
              pragma: no-cache
              x-frame-options: SAMEORIGIN
              x-xss-protection: 1; mode=block
              x-content-type-options: nosniff
              content-security-policy: default-src 'none'; connect-src 'self'; font-src 'self'; frame-src https://service.avm.de https://fritzhelp.avm.de/help/ https://help.avm.de https://www.avm.de https://avm.de https://assets.avm.de https://clickonce.avm.de http://clickonce.avm.de http://download.avm.de https://download.avm.de 'self'; img-src 'self' https://tv.avm.de https://help.avm.de/images/ http://help.avm.de/images/ data:; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; frame-ancestors 'self'; media-src 'self'
              2024-07-04 07:22:00.199 - info: javascript.0 (33499) script.js.Fritzbox.DOCSISV01: data:
              2024-07-04 07:22:00.204 - error: javascript.0 (33499) Error in callback: SyntaxError: Unexpected token '<', ")
              2024-07-04 07:22:00.205 - error: javascript.0 (33499) at Object. (script.js.Fritzbox.DOCSISV01:292:30)
              2024-07-04 07:22:00.205 - error: javascript.0 (33499) at /opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1242:38
              2024-07-04 07:22:00.206 - error: javascript.0 (33499) at processTicksAndRejections (node:internal/process/task_queues:95:5)
              
              

              Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
              Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
              kernel Linux pve 6.8.12-15-pve
              6 GByte RAM für den Container
              Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
              Remote-Access über Wireguard der Fritzbox

              MartinPM 1 Antwort Letzte Antwort
              0
              • MartinPM MartinP

                @fastfoot Das hat auch nicht geholfen ...

                2024-07-04 07:22:00.197 - info: javascript.0 (33499) script.js.Fritzbox.DOCSISV01: status 200
                2024-07-04 07:22:00.198 - info: javascript.0 (33499) script.js.Fritzbox.DOCSISV01: headers cache-control: no-cache, no-cache, no-store, must-revalidate
                connection: close
                content-type: text/html; charset=utf-8
                date: Thu, 04 Jul 2024 05:22:00 GMT
                expires: -1
                pragma: no-cache
                x-frame-options: SAMEORIGIN
                x-xss-protection: 1; mode=block
                x-content-type-options: nosniff
                content-security-policy: default-src 'none'; connect-src 'self'; font-src 'self'; frame-src https://service.avm.de https://fritzhelp.avm.de/help/ https://help.avm.de https://www.avm.de https://avm.de https://assets.avm.de https://clickonce.avm.de http://clickonce.avm.de http://download.avm.de https://download.avm.de 'self'; img-src 'self' https://tv.avm.de https://help.avm.de/images/ http://help.avm.de/images/ data:; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; frame-ancestors 'self'; media-src 'self'
                2024-07-04 07:22:00.199 - info: javascript.0 (33499) script.js.Fritzbox.DOCSISV01: data:
                2024-07-04 07:22:00.204 - error: javascript.0 (33499) Error in callback: SyntaxError: Unexpected token '<', ")
                2024-07-04 07:22:00.205 - error: javascript.0 (33499) at Object. (script.js.Fritzbox.DOCSISV01:292:30)
                2024-07-04 07:22:00.205 - error: javascript.0 (33499) at /opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1242:38
                2024-07-04 07:22:00.206 - error: javascript.0 (33499) at processTicksAndRejections (node:internal/process/task_queues:95:5)
                
                
                MartinPM Offline
                MartinPM Offline
                MartinP
                schrieb am zuletzt editiert von MartinP
                #168

                Das ist der httpPost

                script.js.Fritzbox.DOCSISV01: httpPost(config={"method":"post","url":"http://192.168.2.1/data.lua","responseType":"text","responseEncoding":"utf8","timeout":2000,"headers":{"User-Agent":"Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/121.0","Content-Type":"application/x-www-form-urlencoded"},"data":{"title":"channels","body":"xhr=1&sid=4........................&lang=de&page=docInfo&xhrId=all&no_sidrenew=","user_id":"1"}}, data=[object Object])
                

                Auch das geht nicht:

                	script.js.Fritzbox.DOCSISV01: httpPost(config={"method":"post","url":"http://192.168.2.1/data.lua","responseType":"text","responseEncoding":"utf8","timeout":2000,"headers":{"User-Agent":"Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/121.0","Content-Type":"application/x-www-form-urlencoded","Authorization":"Bearer ae..............b"},"data":{"title":"channels","body":"xhr=1&sid=ae................b&lang=de&page=docInfo&xhrId=all&no_sidrenew=","user_id":"1"}}, data=[object Object])
                

                Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                kernel Linux pve 6.8.12-15-pve
                6 GByte RAM für den Container
                Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                Remote-Access über Wireguard der Fritzbox

                MartinPM 1 Antwort Letzte Antwort
                0
                • MartinPM MartinP

                  Das ist der httpPost

                  script.js.Fritzbox.DOCSISV01: httpPost(config={"method":"post","url":"http://192.168.2.1/data.lua","responseType":"text","responseEncoding":"utf8","timeout":2000,"headers":{"User-Agent":"Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/121.0","Content-Type":"application/x-www-form-urlencoded"},"data":{"title":"channels","body":"xhr=1&sid=4........................&lang=de&page=docInfo&xhrId=all&no_sidrenew=","user_id":"1"}}, data=[object Object])
                  

                  Auch das geht nicht:

                  	script.js.Fritzbox.DOCSISV01: httpPost(config={"method":"post","url":"http://192.168.2.1/data.lua","responseType":"text","responseEncoding":"utf8","timeout":2000,"headers":{"User-Agent":"Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/121.0","Content-Type":"application/x-www-form-urlencoded","Authorization":"Bearer ae..............b"},"data":{"title":"channels","body":"xhr=1&sid=ae................b&lang=de&page=docInfo&xhrId=all&no_sidrenew=","user_id":"1"}}, data=[object Object])
                  
                  MartinPM Offline
                  MartinPM Offline
                  MartinP
                  schrieb am zuletzt editiert von
                  #169

                  Da kann man ja manisch werden, bei dieser Bastelei... ziemlich sperrig die neuen Funktionen ...

                  Das ist das, was zwischen Firefox und Fritzbox beim httpPost ausgetauscht wird ...

                  02ee9ac1-2030-4889-9805-3a77d148b8b4-grafik.png

                  Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                  Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                  kernel Linux pve 6.8.12-15-pve
                  6 GByte RAM für den Container
                  Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                  Remote-Access über Wireguard der Fritzbox

                  F 1 Antwort Letzte Antwort
                  0
                  • MartinPM MartinP

                    Da kann man ja manisch werden, bei dieser Bastelei... ziemlich sperrig die neuen Funktionen ...

                    Das ist das, was zwischen Firefox und Fritzbox beim httpPost ausgetauscht wird ...

                    02ee9ac1-2030-4889-9805-3a77d148b8b4-grafik.png

                    F Offline
                    F Offline
                    fastfoot
                    schrieb am zuletzt editiert von
                    #170

                    @martinp ich mag diese httpGet und httpPost nicht sonderlich, obwohl die Idee dahinter schon sehr gut ist. Mir fehlen da die Async Functionen um die awaiten zu können. Deshalb bevorzuge ich axios direkt, schon wegen der Doku. Anyway, hier sind zwei simple Wrapper die du verwenden kannst, wenn es dir nur um den reinen Aufruf geht dann nimmst du nur die innersten Aufrufe. Ist getestet.

                    const httpGetAsync = (url, options) => {
                        return new Promise((resolve) => {
                            httpGet(url, options, (err, res) => {
                                if (res.statusCode === 200) {
                                    resolve(res)
                                };
                            })
                        })
                    }
                    const httpPostAsync = (url, data, options) => {
                        return new Promise((resolve) => {
                            httpPost(url, data, options, (err, res) => {
                                if (res.statusCode === 200) {
                                    resolve(res)
                                };
                            })
                        })
                    }
                    // url und data können aus den Options extrahiert werden
                    

                    iobroker läuft unter Docker auf QNAP TS-451+
                    SkriptRecovery: https://forum.iobroker.net/post/930558

                    MartinPM 1 Antwort Letzte Antwort
                    0
                    • F fastfoot

                      @martinp ich mag diese httpGet und httpPost nicht sonderlich, obwohl die Idee dahinter schon sehr gut ist. Mir fehlen da die Async Functionen um die awaiten zu können. Deshalb bevorzuge ich axios direkt, schon wegen der Doku. Anyway, hier sind zwei simple Wrapper die du verwenden kannst, wenn es dir nur um den reinen Aufruf geht dann nimmst du nur die innersten Aufrufe. Ist getestet.

                      const httpGetAsync = (url, options) => {
                          return new Promise((resolve) => {
                              httpGet(url, options, (err, res) => {
                                  if (res.statusCode === 200) {
                                      resolve(res)
                                  };
                              })
                          })
                      }
                      const httpPostAsync = (url, data, options) => {
                          return new Promise((resolve) => {
                              httpPost(url, data, options, (err, res) => {
                                  if (res.statusCode === 200) {
                                      resolve(res)
                                  };
                              })
                          })
                      }
                      // url und data können aus den Options extrahiert werden
                      
                      MartinPM Offline
                      MartinPM Offline
                      MartinP
                      schrieb am zuletzt editiert von
                      #171

                      @fastfoot Die Fritzbox schickt ja schon etwas zurück - das ist aber nicht die JSON-Tabelle, die ich erwarten würde ...

                      Ich vermute ja noch immer, dass da irgendetwas in dem, was ich dem httpPost() übergebe nicht korrekt ist... Werde das aber trotzdem mal probieren

                      Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                      Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                      kernel Linux pve 6.8.12-15-pve
                      6 GByte RAM für den Container
                      Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                      Remote-Access über Wireguard der Fritzbox

                      F 1 Antwort Letzte Antwort
                      0
                      • MartinPM MartinP

                        @fastfoot Die Fritzbox schickt ja schon etwas zurück - das ist aber nicht die JSON-Tabelle, die ich erwarten würde ...

                        Ich vermute ja noch immer, dass da irgendetwas in dem, was ich dem httpPost() übergebe nicht korrekt ist... Werde das aber trotzdem mal probieren

                        F Offline
                        F Offline
                        fastfoot
                        schrieb am zuletzt editiert von
                        #172

                        @martinp das ist mit der FB getestet :-)

                        iobroker läuft unter Docker auf QNAP TS-451+
                        SkriptRecovery: https://forum.iobroker.net/post/930558

                        MartinPM 1 Antwort Letzte Antwort
                        0
                        • F fastfoot

                          @martinp das ist mit der FB getestet :-)

                          MartinPM Offline
                          MartinPM Offline
                          MartinP
                          schrieb am zuletzt editiert von MartinP
                          #173

                          @fastfoot den Status 200 habe ich ja auch schon hinbekommen, nur war der Rest des Ergebnisses zwar VIEL, aber völlig unbrauchbar .....Hilfstexte von AVM usw ...

                          	script.js.Fritzbox.DOCSISV01: data: <!DOCTYPE html> <html lang="de"> <head> <meta http-equiv=content-type content="text/html; charset=utf-8" /> <meta http-equiv="Cache-Control" content="private, no-transform" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="format-detection" content="telephone=no" /> <meta http-equiv="x-rim-auto-match" content="none" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimal-ui" /> <meta name="mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta http-equiv="cleartype" content="on"> <link rel="icon" href="/favicon.ico" size="16x16"/> <link rel="icon" href="/icon.svg" type="image/svg+xml"/> <link rel="icon" href="/icon.png" type="image/png"/> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> <link rel="apple-touch-startup-image" href="/apple-touch-icon.png" /> <style> /*@font-face { font-family: 'Source Sans Pro'; font-style: italic; font-stretch: normal; font-weight: 400; src: url('/assets/fonts/SourceSansPro-Italic.woff2') format('woff2'); }*/ @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-stretch: normal; font-weight: 400; src: url('/assets/fonts/source-sans-pro-v11-latin-ext_latin-regular.woff2') format('woff2'); } @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-stretch: normal; font-weight: 600; src: url('/assets/fonts/source-sans-pro-v11-latin-ext_latin-600.woff2') format('woff2'); } @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-stretch: normal; font-weight: 900; src: url('/assets/fonts/SourceSansPro-Black.woff2') format('woff2'); } html, input, textarea, keygen, select, button { font-family: 'Source Sans Pro', Arial, sans-serif; font-size: 100%; } </style> <link rel="stylesheet" type="text/css" href="/css/box.css"> <link rel='stylesheet' type='text/css' href="/css/rd/login.css"/> <title> FRITZ!Box </title> </head> <body> <script> var gNbc = false; </script> <script src="/js/browser.js"></script> <script src="/js/vendor.js"></script> <script src="/js/box-login.js"></script> <script type="module"> import { setConfig } from "/js/config.js"; import login from "/js/login.js"; setConfig({"ZIGBEE":false,"GUI_IS_POWERLINE":false,"isDebug":false,"gu_type":"release","WLAN":{"is_double_wlan":false},"GUI_IS_REPEATER":false,"GUI_IS_GATEWAY":false,"language":"de","GUI_HIDE_TEASER":false}); const data = {"firstTenMin":fa
                          

                          Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                          Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                          kernel Linux pve 6.8.12-15-pve
                          6 GByte RAM für den Container
                          Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                          Remote-Access über Wireguard der Fritzbox

                          F 1 Antwort Letzte Antwort
                          0
                          • MartinPM MartinP

                            @fastfoot den Status 200 habe ich ja auch schon hinbekommen, nur war der Rest des Ergebnisses zwar VIEL, aber völlig unbrauchbar .....Hilfstexte von AVM usw ...

                            	script.js.Fritzbox.DOCSISV01: data: <!DOCTYPE html> <html lang="de"> <head> <meta http-equiv=content-type content="text/html; charset=utf-8" /> <meta http-equiv="Cache-Control" content="private, no-transform" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="format-detection" content="telephone=no" /> <meta http-equiv="x-rim-auto-match" content="none" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimal-ui" /> <meta name="mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta http-equiv="cleartype" content="on"> <link rel="icon" href="/favicon.ico" size="16x16"/> <link rel="icon" href="/icon.svg" type="image/svg+xml"/> <link rel="icon" href="/icon.png" type="image/png"/> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> <link rel="apple-touch-startup-image" href="/apple-touch-icon.png" /> <style> /*@font-face { font-family: 'Source Sans Pro'; font-style: italic; font-stretch: normal; font-weight: 400; src: url('/assets/fonts/SourceSansPro-Italic.woff2') format('woff2'); }*/ @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-stretch: normal; font-weight: 400; src: url('/assets/fonts/source-sans-pro-v11-latin-ext_latin-regular.woff2') format('woff2'); } @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-stretch: normal; font-weight: 600; src: url('/assets/fonts/source-sans-pro-v11-latin-ext_latin-600.woff2') format('woff2'); } @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-stretch: normal; font-weight: 900; src: url('/assets/fonts/SourceSansPro-Black.woff2') format('woff2'); } html, input, textarea, keygen, select, button { font-family: 'Source Sans Pro', Arial, sans-serif; font-size: 100%; } </style> <link rel="stylesheet" type="text/css" href="/css/box.css"> <link rel='stylesheet' type='text/css' href="/css/rd/login.css"/> <title> FRITZ!Box </title> </head> <body> <script> var gNbc = false; </script> <script src="/js/browser.js"></script> <script src="/js/vendor.js"></script> <script src="/js/box-login.js"></script> <script type="module"> import { setConfig } from "/js/config.js"; import login from "/js/login.js"; setConfig({"ZIGBEE":false,"GUI_IS_POWERLINE":false,"isDebug":false,"gu_type":"release","WLAN":{"is_double_wlan":false},"GUI_IS_REPEATER":false,"GUI_IS_GATEWAY":false,"language":"de","GUI_HIDE_TEASER":false}); const data = {"firstTenMin":fa
                            
                            F Offline
                            F Offline
                            fastfoot
                            schrieb am zuletzt editiert von fastfoot
                            #174

                            @martinp options und Aufruf?

                            Edit: Wenn wie weiter oben dann mal mit meinem Aufruf vergleichen!

                            iobroker läuft unter Docker auf QNAP TS-451+
                            SkriptRecovery: https://forum.iobroker.net/post/930558

                            MartinPM 1 Antwort Letzte Antwort
                            0
                            • F fastfoot

                              @martinp options und Aufruf?

                              Edit: Wenn wie weiter oben dann mal mit meinem Aufruf vergleichen!

                              MartinPM Offline
                              MartinPM Offline
                              MartinP
                              schrieb am zuletzt editiert von
                              #175

                              @fastfoot

                              Das hatte ich als Gedächtnisstütze für die vorherige Version auskommentiert behalten

                              //    var options = {
                              //        url: docsisURL, 
                              //        method: 'POST',
                              //        headers: {
                              //            'Content-Type': 'application/x-www-form-urlencoded'
                              //        },
                              //        body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
                              //    };toString
                              //    request(options, function(error, response, body) 
                              

                              Da der Beginn der Auswerteroutine - mit viel Logging aktuell -

                                    httpPost(docsisURL, 
                                      {
                              //            title : 'channels',
                                          body: 'xhr=1&sid=' + sid + '&lang=de&page=docinfo&xhrId=all&no_sidrenew=',
                              //            user_id : '1'
                                      }, 
                                      {
                              
                                          timeout: 2000,
                                          // responseType: 'arraybuffer',
                              //            bearerAuth: sid,
                                          headers: {
                                             'Content-Type': 'application/x-www-form-urlencoded'
                                          },
                                      },
                                      (error, response) => {
                                      if (!error && response.statusCode == 200) {
                                          log ('status ' + response.statusCode);
                                          log ('headers ' + response.headers);
                                          log ('data: ' + response.data);
                                          const body = response.data;
                                          // tableData = JSON.parse(body);
                                          tableData = response.data;
                                          if(tableData){
                              

                              Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                              Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                              kernel Linux pve 6.8.12-15-pve
                              6 GByte RAM für den Container
                              Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                              Remote-Access über Wireguard der Fritzbox

                              F 2 Antworten Letzte Antwort
                              0
                              • MartinPM MartinP

                                @fastfoot

                                Das hatte ich als Gedächtnisstütze für die vorherige Version auskommentiert behalten

                                //    var options = {
                                //        url: docsisURL, 
                                //        method: 'POST',
                                //        headers: {
                                //            'Content-Type': 'application/x-www-form-urlencoded'
                                //        },
                                //        body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
                                //    };toString
                                //    request(options, function(error, response, body) 
                                

                                Da der Beginn der Auswerteroutine - mit viel Logging aktuell -

                                      httpPost(docsisURL, 
                                        {
                                //            title : 'channels',
                                            body: 'xhr=1&sid=' + sid + '&lang=de&page=docinfo&xhrId=all&no_sidrenew=',
                                //            user_id : '1'
                                        }, 
                                        {
                                
                                            timeout: 2000,
                                            // responseType: 'arraybuffer',
                                //            bearerAuth: sid,
                                            headers: {
                                               'Content-Type': 'application/x-www-form-urlencoded'
                                            },
                                        },
                                        (error, response) => {
                                        if (!error && response.statusCode == 200) {
                                            log ('status ' + response.statusCode);
                                            log ('headers ' + response.headers);
                                            log ('data: ' + response.data);
                                            const body = response.data;
                                            // tableData = JSON.parse(body);
                                            tableData = response.data;
                                            if(tableData){
                                
                                F Offline
                                F Offline
                                fastfoot
                                schrieb am zuletzt editiert von
                                #176

                                @martinp

                                httpPost(url,options.body, options,callback)
                                

                                der zweite Parameter muss ein String sein und options wie im Original.

                                iobroker läuft unter Docker auf QNAP TS-451+
                                SkriptRecovery: https://forum.iobroker.net/post/930558

                                1 Antwort Letzte Antwort
                                0
                                • MartinPM MartinP

                                  @fastfoot

                                  Das hatte ich als Gedächtnisstütze für die vorherige Version auskommentiert behalten

                                  //    var options = {
                                  //        url: docsisURL, 
                                  //        method: 'POST',
                                  //        headers: {
                                  //            'Content-Type': 'application/x-www-form-urlencoded'
                                  //        },
                                  //        body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
                                  //    };toString
                                  //    request(options, function(error, response, body) 
                                  

                                  Da der Beginn der Auswerteroutine - mit viel Logging aktuell -

                                        httpPost(docsisURL, 
                                          {
                                  //            title : 'channels',
                                              body: 'xhr=1&sid=' + sid + '&lang=de&page=docinfo&xhrId=all&no_sidrenew=',
                                  //            user_id : '1'
                                          }, 
                                          {
                                  
                                              timeout: 2000,
                                              // responseType: 'arraybuffer',
                                  //            bearerAuth: sid,
                                              headers: {
                                                 'Content-Type': 'application/x-www-form-urlencoded'
                                              },
                                          },
                                          (error, response) => {
                                          if (!error && response.statusCode == 200) {
                                              log ('status ' + response.statusCode);
                                              log ('headers ' + response.headers);
                                              log ('data: ' + response.data);
                                              const body = response.data;
                                              // tableData = JSON.parse(body);
                                              tableData = response.data;
                                              if(tableData){
                                  
                                  F Offline
                                  F Offline
                                  fastfoot
                                  schrieb am zuletzt editiert von
                                  #177

                                  @martinp oder ganz konkret:

                                  let data = `xhr=1&sid=${SID}&lang=de&page=${page}&xhrId=all`
                                  let url = docsisURL;
                                  let options = {
                                      headers: {
                                          "Content-Type": "application/x-www-form-urlencoded",
                                      },
                                  }
                                  httpPost(url, data, options, (err, res) => {
                                      if (res.statusCode === 200) {
                                          let fbData = JSON.parse(res.data); // nur wenn ein JSON erwartet wird, 
                                      }
                                  })
                                  

                                  iobroker läuft unter Docker auf QNAP TS-451+
                                  SkriptRecovery: https://forum.iobroker.net/post/930558

                                  MartinPM 1 Antwort Letzte Antwort
                                  0
                                  • F fastfoot

                                    @martinp oder ganz konkret:

                                    let data = `xhr=1&sid=${SID}&lang=de&page=${page}&xhrId=all`
                                    let url = docsisURL;
                                    let options = {
                                        headers: {
                                            "Content-Type": "application/x-www-form-urlencoded",
                                        },
                                    }
                                    httpPost(url, data, options, (err, res) => {
                                        if (res.statusCode === 200) {
                                            let fbData = JSON.parse(res.data); // nur wenn ein JSON erwartet wird, 
                                        }
                                    })
                                    
                                    MartinPM Offline
                                    MartinPM Offline
                                    MartinP
                                    schrieb am zuletzt editiert von
                                    #178

                                    @fastfoot Wollte doch gerade zum Abendbrot gehen, aber jetzt juckt es in den Fingern ;-)

                                    Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                                    Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                                    kernel Linux pve 6.8.12-15-pve
                                    6 GByte RAM für den Container
                                    Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                                    Remote-Access über Wireguard der Fritzbox

                                    F 1 Antwort Letzte Antwort
                                    0
                                    • MartinPM MartinP

                                      @fastfoot Wollte doch gerade zum Abendbrot gehen, aber jetzt juckt es in den Fingern ;-)

                                      F Offline
                                      F Offline
                                      fastfoot
                                      schrieb am zuletzt editiert von fastfoot
                                      #179

                                      @martinp ein simpler Test wäre dann console.log(fbData.timeTillLogout)). Sollte 1200 zeigen. Die eigentlichen Kanal-Daten finden sich in fbbData.data

                                      iobroker läuft unter Docker auf QNAP TS-451+
                                      SkriptRecovery: https://forum.iobroker.net/post/930558

                                      1 Antwort Letzte Antwort
                                      0
                                      • MartinPM Offline
                                        MartinPM Offline
                                        MartinP
                                        schrieb am zuletzt editiert von MartinP
                                        #180

                                        @martinp Funktioniert immer noch nicht ...

                                        Das ist der Aufruf

                                              httpPost(docsisURL, 
                                                'xhr=1&sid=' + sid + '&lang=de&page=docinfo&xhrId=all&no_sidrenew=',
                                                {
                                                    headers: {
                                                       'Content-Type': 'application/x-www-form-urlencoded'
                                                    },
                                                },
                                                (error, response) => {
                                                if (!error && response.statusCode == 200) {
                                        ....
                                        
                                        script.js.Fritzbox.DOCSISV01: httpPost(config={"method":"post","url":"http://192.168.2.1/data.lua","responseType":"text","responseEncoding":"utf8","timeout":2000,"headers":{"User-Agent":"Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/121.0","Content-Type":"application/x-www-form-urlencoded"},"data":"xhr=1&sid=6xxxxxxxxxxxxxxxx3c&lang=de&page=docinfo&xhrId=all&no_sidrenew="}, data=xhr=1&sid=6.................c&lang=de&page=docinfo&xhrId=all&no_sidrenew=)
                                        

                                        Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                                        Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                                        kernel Linux pve 6.8.12-15-pve
                                        6 GByte RAM für den Container
                                        Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                                        Remote-Access über Wireguard der Fritzbox

                                        MartinPM 1 Antwort Letzte Antwort
                                        0
                                        • MartinPM MartinP

                                          @martinp Funktioniert immer noch nicht ...

                                          Das ist der Aufruf

                                                httpPost(docsisURL, 
                                                  'xhr=1&sid=' + sid + '&lang=de&page=docinfo&xhrId=all&no_sidrenew=',
                                                  {
                                                      headers: {
                                                         'Content-Type': 'application/x-www-form-urlencoded'
                                                      },
                                                  },
                                                  (error, response) => {
                                                  if (!error && response.statusCode == 200) {
                                          ....
                                          
                                          script.js.Fritzbox.DOCSISV01: httpPost(config={"method":"post","url":"http://192.168.2.1/data.lua","responseType":"text","responseEncoding":"utf8","timeout":2000,"headers":{"User-Agent":"Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/121.0","Content-Type":"application/x-www-form-urlencoded"},"data":"xhr=1&sid=6xxxxxxxxxxxxxxxx3c&lang=de&page=docinfo&xhrId=all&no_sidrenew="}, data=xhr=1&sid=6.................c&lang=de&page=docinfo&xhrId=all&no_sidrenew=)
                                          
                                          MartinPM Offline
                                          MartinPM Offline
                                          MartinP
                                          schrieb am zuletzt editiert von
                                          #181

                                          @martinp

                                          GAAHH "page=docInfo" und nicht "page=docinfo" ...

                                          Jetzt funktioniert es .... Ein paar Werte sind auch schon über Influx in Grafana gelandet ...

                                          Schnell eine Sicherung machen, und später noch alles etwas von Logging "säubern" ...

                                          Intel(R) Celeron(R) CPU N3000 @ 1.04GHz 8G RAM 480G SSD
                                          Virtualization : unprivileged lxc container (debian 12 on Proxmox 8.4.13)
                                          kernel Linux pve 6.8.12-15-pve
                                          6 GByte RAM für den Container
                                          Fritzbox 6591 FW 8.03 (Vodafone Leih-Box)
                                          Remote-Access über Wireguard der Fritzbox

                                          F 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          310

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe