Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

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

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. ...nicht in offiziellem Repo
  5. Betatest ioBroker.icloud 0.2.x

NEWS

  • Der neue Monatsrückblick für Mai und Juni 2026 ist online!
    BluefoxB
    Bluefox
    8
    1
    1.3k

  • wichtiges UPDATE für controller 7.2.2 im stable
    HomoranH
    Homoran
    10
    1
    3.8k

  • Neues YouTube-Video: Visualisierung im Devices-Adapter
    BluefoxB
    Bluefox
    17
    1
    6.8k

Betatest ioBroker.icloud 0.2.x

Geplant Angeheftet Gesperrt Verschoben ...nicht in offiziellem Repo
copilotappleicloudadapter
82 Beiträge 14 Kommentatoren 3.7k Aufrufe 16 Beobachtet
  • Ä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.
  • T ticaki

    @msauer
    Ich hoffe es geht jetzt.

    @mading
    passt das so mit den Geburtstagen?

    madingM Online
    madingM Online
    mading
    schrieb am zuletzt editiert von mading
    #58

    @ticaki sagte:

    @mading
    passt das so mit den Geburtstagen?

    Mega, funktioniert super! Hab mir gleich ein Blockly gebaut, das mich über den heutigen Geburtstag morgens und nochmal mittags erinnert. Ich habe auch schon eine Blockly-Liste mit Geburtstagswünschen erstellt, die in einer nächsten Ausbaustufe automatisch (eines davon) per WhatsApp verschickt wird :D. Für mich ist eine Erinnerung/ Einbindung in iob perfekt, dann vergesse ich keinen Geburtstag.

    Vielen Dank!

    1 Antwort Letzte Antwort
    0
    • K Online
      K Online
      Kelzith
      schrieb am zuletzt editiert von Kelzith
      #59

      @ticaki Vielen Dank für den Adapter, echt super.
      Wie kann ich denn bei FindMy die Geräte anderer Personen, die für mich freigegeben sind, anzeigen?
      Ich möchte Strom in der Garage steuern, egal, ob meine Frau oder ich nach Hause kommen. Der Bewegungsmelder ist dort sehr unzuverlässig.
      Danke im Voraus

      Und schon hat es sich erledigt. Ich war zu ungeduldig! Nach ein paar Minuten sehe ich alle Geräte!
      Wirklich toll umgesetzt, ganz lieben Dank.

      1 Antwort Letzte Antwort
      0
      • T Nicht stören
        T Nicht stören
        ticaki
        schrieb am zuletzt editiert von ticaki
        #60

        Ich hab mal ne Befehlsfolge mir von der AI geben lassen mit der man einen Backupordner für den icloud-sync erzeugen kann bzw. der die rechte richtig setzt.

        Legt unterhalb von HOME eine subdir an und macht den pfad nach oben betretbar für iobroker

        SERVICE_USER="iobroker"
        SUBDIR="backup"
        
        TARGET="$HOME/$SUBDIR"
        STOP_AT="/"        # nicht über diese Grenze hinaus ACLs setzen
        
        # 1. Zielordner anlegen (falls nicht da)
        mkdir -p "$TARGET"
        
        # 2. Pfadkette nach oben durchlaufen und x setzen, wo nötig
        dir="$(dirname "$TARGET")"
        while [ "$dir" != "$STOP_AT" ] && [ "$dir" != "/" ]; do
          # Nur wenn "other" noch kein x hat → ACL setzen (sonst überflüssig)
          other_digit=$(stat -c '%a' "$dir")
          other_digit=${other_digit: -1}
          if (( (other_digit & 1) == 0 )); then
            sudo setfacl -m "u:${SERVICE_USER}:x" "$dir"
            echo "ACL gesetzt: x auf $dir"
          else
            echo "übersprungen (hat schon o+x): $dir"
          fi
          dir="$(dirname "$dir")"
        done
        
        # 3. Zielordner: rX rekursiv auf Bestehendes
        sudo setfacl -R -m "u:${SERVICE_USER}:rX" "$TARGET"
        
        # 4. Default-ACL für künftige Inhalte
        sudo setfacl -d -m "u:${SERVICE_USER}:rX" "$TARGET"
        
        # 5. Kontrolle
        echo
        echo "--- Pfad-Check ---"
        namei -l "$TARGET"
        echo
        echo "--- ACLs auf Ziel ---"
        getfacl "$TARGET"
        echo
        sudo -u "$SERVICE_USER" test -r "$TARGET" && sudo -u "$SERVICE_USER" test -x "$TARGET" \
          && echo "OK: $SERVICE_USER kann auf $TARGET zugreifen" \
          || echo "FEHLER: Zugriff klappt nicht"
        

        $HOME auf was anders setzten, wenn erwünscht.

        Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

        Spenden

        1 Antwort Letzte Antwort
        0
        • T Nicht stören
          T Nicht stören
          ticaki
          schrieb am zuletzt editiert von ticaki
          #61

          Kurze info

          Falls jemand mit Yubikey arbeitet - die Github version unterstützt jetzt auch das authentifizieren mit dem usb stick. Geht nur mit linux und man muß auf systemebene die fifo2 tools installieren und dem user iobroker erlauben das zu lesen.

          siehe readme

          Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

          Spenden

          1 Antwort Letzte Antwort
          0
          • mcm1957M Online
            mcm1957M Online
            mcm1957
            Developer Most Active
            schrieb am zuletzt editiert von
            #62

            Der Adapter wurde ins LATEST Repository aufgenommen

            Ich rege an in Abstimmung mit @Homoran ein neues Topic im Testerbereich anzulegen und dieses Topic hier zu schließen.

            Entwicklung u Betreuung: envertech-pv, hoymiles-ms, ns-client, pid, snmp Adapter;
            Support Repositoryverwaltung.

            Wer 'nen Kaffee spendieren will: https://paypal.me

            LESEN - gute Forenbeitrage

            1 Antwort Letzte Antwort
            1
            • P Offline
              P Offline
              peterle828
              schrieb am zuletzt editiert von
              #63

              Liebe Mitforisten,

              leider habe ich nicht herausgefunden, wo dieser Thread fortgesetzt wird, daher versuche ich es trotzdem nochmal hier... (sorry, bin Anfänger)
              Ich würde auch gerne den icloud-Adapter nutzen, die Anmeldung gelingt mir aber nicht.

              iobroker mit 7.2.2er js-controller Version, icloud-Adapter mit Version 1.0.0 (auch probiert 0.7.5).

              Anmeldung klappt bis zur Eingabe des SMS-Codes, dann kommt immer ein 409-Fehler als Antwort (Code wird als "valid" bewertet).
              Ich gebe den Code maximal 10 Sekunden nach SMS-Empfang ein.

              Was muss man ggf. noch beachten? Oder hat Apple was geändert und ich muss eine andere Adapter-Version laden?

              Bin für Tipps dankbar!
              Viele Grüße an Alle!

              mcm1957M T 2 Antworten Letzte Antwort
              0
              • P peterle828

                Liebe Mitforisten,

                leider habe ich nicht herausgefunden, wo dieser Thread fortgesetzt wird, daher versuche ich es trotzdem nochmal hier... (sorry, bin Anfänger)
                Ich würde auch gerne den icloud-Adapter nutzen, die Anmeldung gelingt mir aber nicht.

                iobroker mit 7.2.2er js-controller Version, icloud-Adapter mit Version 1.0.0 (auch probiert 0.7.5).

                Anmeldung klappt bis zur Eingabe des SMS-Codes, dann kommt immer ein 409-Fehler als Antwort (Code wird als "valid" bewertet).
                Ich gebe den Code maximal 10 Sekunden nach SMS-Empfang ein.

                Was muss man ggf. noch beachten? Oder hat Apple was geändert und ich muss eine andere Adapter-Version laden?

                Bin für Tipps dankbar!
                Viele Grüße an Alle!

                mcm1957M Online
                mcm1957M Online
                mcm1957
                Developer Most Active
                schrieb am zuletzt editiert von
                #64

                @peterle828 sagte:

                Liebe Mitforisten,

                leider habe ich nicht herausgefunden, wo dieser Thread fortgesetzt wird, daher versuche ich es trotzdem nochmal hier... (sorry, bin Anfänger)

                Nicht dein Problem / Fehler :-)

                Das entsprechende Issue ist noch offen
                https://github.com/ticaki/ioBroker.icloud/issues/34

                Entwicklung u Betreuung: envertech-pv, hoymiles-ms, ns-client, pid, snmp Adapter;
                Support Repositoryverwaltung.

                Wer 'nen Kaffee spendieren will: https://paypal.me

                LESEN - gute Forenbeitrage

                1 Antwort Letzte Antwort
                0
                • P peterle828

                  Liebe Mitforisten,

                  leider habe ich nicht herausgefunden, wo dieser Thread fortgesetzt wird, daher versuche ich es trotzdem nochmal hier... (sorry, bin Anfänger)
                  Ich würde auch gerne den icloud-Adapter nutzen, die Anmeldung gelingt mir aber nicht.

                  iobroker mit 7.2.2er js-controller Version, icloud-Adapter mit Version 1.0.0 (auch probiert 0.7.5).

                  Anmeldung klappt bis zur Eingabe des SMS-Codes, dann kommt immer ein 409-Fehler als Antwort (Code wird als "valid" bewertet).
                  Ich gebe den Code maximal 10 Sekunden nach SMS-Empfang ein.

                  Was muss man ggf. noch beachten? Oder hat Apple was geändert und ich muss eine andere Adapter-Version laden?

                  Bin für Tipps dankbar!
                  Viele Grüße an Alle!

                  T Nicht stören
                  T Nicht stören
                  ticaki
                  schrieb am zuletzt editiert von
                  #65

                  @peterle828
                  die Version 1.0.1 ist online - ich hoffe die löst das Problem. Ich selbst benutze einen Fido Stick

                  Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                  Spenden

                  1 Antwort Letzte Antwort
                  0
                  • P Offline
                    P Offline
                    peterle828
                    schrieb am zuletzt editiert von peterle828
                    #66

                    @ticaki
                    Wow, herzlichen Dank für die schnelle Reaktion!

                    iobroker-Admin zeigt noch die 1.0.0 an, aber die 1.0.1 liess sich über Eingabe der Versionsnummer installieren (hoffentlich ist das dann die richtige Version).

                    Leider funktioniert es bei mir immer noch nicht:

                    wenn ich jetzt den SMS-Code eingebe, kommt eine Meldung, dass der Code falsch ist. In der Fehlermeldung wird eine negative Zahl als Code angezeigt. Ich habe es zwei Mal ausprobiert und jedes Mal wurde der eingegebene 6-stellige Code in eine negative Zahl "konvertiert" (also das "-" mit nur noch 5 weiteren Ziffern) oder eine Zeichenkette mit "-" am Anfang.

                    Irgendein Datentypenproblem?

                    EDIT:
                    es scheint jedes Mal der selbe Code "-21669" zu sein, egal was ich als SMS-Code eingebe.
                    Das ist dann wohl kein Konvertierungsfehler...

                    1 Antwort Letzte Antwort
                    0
                    • T Nicht stören
                      T Nicht stören
                      ticaki
                      schrieb am zuletzt editiert von
                      #67

                      wie gesagt ich benutze fido - ich kann das nicht ordentlich testen ohne alles mögliche umzustellen und das dann auch noch auf zig geräten :) Ich werfe es mal der KI hin mal sehen was die meint

                      Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                      Spenden

                      P 1 Antwort Letzte Antwort
                      0
                      • T ticaki

                        wie gesagt ich benutze fido - ich kann das nicht ordentlich testen ohne alles mögliche umzustellen und das dann auch noch auf zig geräten :) Ich werfe es mal der KI hin mal sehen was die meint

                        P Offline
                        P Offline
                        peterle828
                        schrieb am zuletzt editiert von
                        #68

                        @ticaki
                        Alles klar, herzlichen Dank für Deine Mühe!
                        Ich besorge mir auch einen Stick, vielleicht bekomme ich es dann zum Laufen...

                        Schade, dass ich keine Ahnung mehr von moderner Programmierung habe, sonst würde ich selbst mal reinschauen...

                        Herzliche Grüße

                        T 1 Antwort Letzte Antwort
                        0
                        • T Nicht stören
                          T Nicht stören
                          ticaki
                          schrieb am zuletzt editiert von ticaki
                          #69

                          ich hab eine v1.0.2 auf den weg gebracht, das dauert aber noch ein paar minuten bis man es über npm bekommt und nen tag bis es im iobroker sicher in der update liste steht. (das hab ich vor 2 Stunden geschrieben aber vergessen zu posten :D)

                          du musst dir keinen stick besorgen, ich wollte damit eher sage - ich kanns nicht testen, heißt du mußt teste. Bedeutet auch das es ein paar runden dauern kann bis es sauber funktioniert

                          Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                          Spenden

                          1 Antwort Letzte Antwort
                          0
                          • P peterle828

                            @ticaki
                            Alles klar, herzlichen Dank für Deine Mühe!
                            Ich besorge mir auch einen Stick, vielleicht bekomme ich es dann zum Laufen...

                            Schade, dass ich keine Ahnung mehr von moderner Programmierung habe, sonst würde ich selbst mal reinschauen...

                            Herzliche Grüße

                            T Nicht stören
                            T Nicht stören
                            ticaki
                            schrieb am zuletzt editiert von
                            #70

                            @peterle828
                            der beitrag vorher war an dich gerichtet :)

                            Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                            Spenden

                            1 Antwort Letzte Antwort
                            0
                            • P Offline
                              P Offline
                              peterle828
                              schrieb am zuletzt editiert von
                              #71

                              @ticaki
                              Sorry, war ne Zeit lang offline.

                              Ich finde keine Version 1.0.2 auf github und kann sie auch per Versionsnummer über den iobroker nicht installieren. Wie komme ich da dran?

                              1 Antwort Letzte Antwort
                              0
                              • P Offline
                                P Offline
                                peterle828
                                schrieb am zuletzt editiert von
                                #72

                                @ticaki

                                ich habe die Version 1.0.1 nochmal laufen lassen mit Debug-Messages... hier ist das Log... nur meinen Account habe ich durch meine_mail@domain ersetzt...

                                2026-08-23 16:38:19.083 - debug: icloud.0 (390760) Redis Objects: Use Redis connection: 127.0.0.1:6379
                                2026-08-23 16:38:19.115 - debug: icloud.0 (390760) Objects client ready ... initialize now
                                2026-08-23 16:38:19.117 - debug: icloud.0 (390760) Objects create System PubSub Client
                                2026-08-23 16:38:19.119 - debug: icloud.0 (390760) Objects create User PubSub Client
                                2026-08-23 16:38:19.234 - debug: icloud.0 (390760) Objects client initialize lua scripts
                                2026-08-23 16:38:19.240 - debug: icloud.0 (390760) Objects connected to redis: 127.0.0.1:6379
                                2026-08-23 16:38:19.259 - debug: icloud.0 (390760) Redis States: Use Redis connection: 127.0.0.1:6379
                                2026-08-23 16:38:19.266 - debug: icloud.0 (390760) States create System PubSub Client
                                2026-08-23 16:38:19.267 - debug: icloud.0 (390760) States create User PubSub Client
                                2026-08-23 16:38:19.279 - debug: icloud.0 (390760) States connected to redis: 127.0.0.1:6379
                                2026-08-23 16:38:19.498 - info: icloud.0 (390760) starting. Version 1.0.1 (non-npm: ticaki/ioBroker.icloud) in /opt/iobroker/node_modules/iobroker.icloud, node: v24.19.0, js-controller: 7.2.2
                                2026-08-23 16:38:19.520 - debug: icloud.0 (390760) onReady called
                                2026-08-23 16:38:19.550 - debug: icloud.0 (390760) Config OK — username: meine_mail@domain, password: **********
                                2026-08-23 16:38:19.552 - debug: icloud.0 (390760) Extending object account with {"type":"channel","common":{"name":"Account Information"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.569 - debug: icloud.0 (390760) Extending object account.fullName with {"type":"state","common":{"name":"Full Name","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                2026-08-23 16:38:19.581 - debug: icloud.0 (390760) Extending object account.firstName with {"type":"state","common":{"name":"First Name","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                2026-08-23 16:38:19.594 - debug: icloud.0 (390760) Extending object account.lastName with {"type":"state","common":{"name":"Last Name","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                2026-08-23 16:38:19.606 - debug: icloud.0 (390760) Extending object account.appleId with {"type":"state","common":{"name":"Apple ID","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                2026-08-23 16:38:19.617 - debug: icloud.0 (390760) Extending object account.countryCode with {"type":"state","common":{"name":"Country Code","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                2026-08-23 16:38:19.628 - debug: icloud.0 (390760) Extending object mfa with {"type":"channel","common":{"name":"Multi-Factor Authentication"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.635 - debug: icloud.0 (390760) Extending object mfa.code with {"type":"state","common":{"name":"MFA Code (enter 6-digit code here)","type":"string","role":"text","read":true,"write":true,"def":""},"native":{}} (previous: none)
                                2026-08-23 16:38:19.647 - debug: icloud.0 (390760) Extending object mfa.required with {"type":"state","common":{"name":"MFA Required","type":"boolean","role":"indicator","read":true,"write":false,"def":false},"native":{}} (previous: none)
                                2026-08-23 16:38:19.659 - debug: icloud.0 (390760) Extending object mfa.requestSmsCode with {"type":"state","common":{"name":"Request MFA code via SMS (set to true)","type":"boolean","role":"button","read":true,"write":true,"def":false},"native":{}} (previous: none)
                                2026-08-23 16:38:19.669 - debug: icloud.0 (390760) Extending object mfa.useSecurityKey with {"type":"state","common":{"name":"Authenticate with security key (set to true)","type":"boolean","role":"button","read":true,"write":true,"def":false},"native":{}} (previous: none)
                                2026-08-23 16:38:19.679 - debug: icloud.0 (390760) Extending object mfa.securityKeySupported with {"type":"state","common":{"name":"Security-key login supported on this host","type":"boolean","role":"indicator","read":true,"write":false,"def":false},"native":{}} (previous: none)
                                2026-08-23 16:38:19.694 - debug: icloud.0 (390760) Extending object mfa.securityKeyStatus with {"type":"state","common":{"name":"Security-key login status","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                2026-08-23 16:38:19.703 - debug: icloud.0 (390760) Extending object account.storage with {"type":"channel","common":{"name":"Storage"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.709 - debug: icloud.0 (390760) Extending object account.storage.usedMB with {"type":"state","common":{"name":"Used Storage","type":"number","role":"value","read":true,"write":false,"unit":"MB"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.714 - debug: icloud.0 (390760) Extending object account.storage.totalMB with {"type":"state","common":{"name":"Total Storage","type":"number","role":"value","read":true,"write":false,"unit":"MB"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.720 - debug: icloud.0 (390760) Extending object account.storage.availableMB with {"type":"state","common":{"name":"Available Storage","type":"number","role":"value","read":true,"write":false,"unit":"MB"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.726 - debug: icloud.0 (390760) Extending object account.storage.usedPercent with {"type":"state","common":{"name":"Used Percent","type":"number","role":"value","read":true,"write":false,"unit":"%"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.732 - debug: icloud.0 (390760) Extending object account.storage.overQuota with {"type":"state","common":{"name":"Over Quota","type":"boolean","role":"indicator.alarm","read":true,"write":false},"native":{}} (previous: none)
                                2026-08-23 16:38:19.739 - debug: icloud.0 (390760) Extending object account.storage.almostFull with {"type":"state","common":{"name":"Almost Full","type":"boolean","role":"indicator.alarm","read":true,"write":false},"native":{}} (previous: none)
                                2026-08-23 16:38:19.745 - debug: icloud.0 (390760) Extending object account.storage.paidQuota with {"type":"state","common":{"name":"Paid Quota","type":"boolean","role":"indicator","read":true,"write":false},"native":{}} (previous: none)
                                2026-08-23 16:38:19.752 - debug: icloud.0 (390760) Extending object account.storage.byMedia with {"type":"channel","common":{"name":"Storage by Media Type"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.758 - debug: icloud.0 (390760) Extending object account.storage.family with {"type":"channel","common":{"name":"Family Storage"},"native":{}} (previous: none)
                                2026-08-23 16:38:19.763 - debug: icloud.0 (390760) Objects created/verified
                                2026-08-23 16:38:19.828 - debug: icloud.0 (390760) State cache pre-populated with 12 entries
                                2026-08-23 16:38:19.830 - debug: icloud.0 (390760) Subscribed to mfa.code
                                2026-08-23 16:38:19.832 - debug: icloud.0 (390760) Using data directory: /opt/iobroker/iobroker-data/icloud.0
                                2026-08-23 16:38:19.835 - debug: icloud.0 (390760) Calling icloud.authenticate()
                                2026-08-23 16:38:19.840 - debug: icloud.0 (390760) [icloud.js] [authStore] Session loaded from disk
                                2026-08-23 16:38:19.872 - debug: icloud.0 (390760) [icloud.js] [authStore] Cookie jar loaded from disk
                                2026-08-23 16:38:19.873 - debug: icloud.0 (390760) [icloud.js] [authStore] No legacy trust-token file found
                                2026-08-23 16:38:19.874 - debug: icloud.0 (390760) [icloud.js] State changed to: Started
                                2026-08-23 16:38:19.875 - debug: icloud.0 (390760) iCloud auth started — credentials submitted, waiting for response
                                2026-08-23 16:38:19.875 - debug: icloud.0 (390760) [icloud.js] [auth] Validating existing session token...
                                2026-08-23 16:38:20.623 - debug: icloud.0 (390760) [icloud.js] [auth] Session token invalid (HTTP 421) — doing full signin
                                2026-08-23 16:38:20.671 - debug: icloud.0 (390760) [icloud.js] [auth] SRP init → POST https://idmsa.apple.com/appleauth/auth/signin/init
                                2026-08-23 16:38:21.485 - debug: icloud.0 (390760) [icloud.js] [auth] SRP init response status: 200
                                2026-08-23 16:38:21.555 - debug: icloud.0 (390760) [icloud.js] [auth] signin → POST https://idmsa.apple.com/appleauth/auth/signin/complete?isRememberMeEnabled=true
                                2026-08-23 16:38:22.402 - debug: icloud.0 (390760) [icloud.js] [auth] signin response status: 409
                                2026-08-23 16:38:22.405 - debug: icloud.0 (390760) [icloud.js] [auth] signin response headers: {"cache-control":"no-store","connection":"keep-alive","content-encoding":"gzip","content-language":"en-US-x-lvariant-USA","content-security-policy":"default-src 'self' ; child-src blob: ; connect-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://webcourier.sandbox.push.apple.com https://xp-qa.apple.com wss://websocket.push.apple.com ; font-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://idmsa.apple.com https://gsa.apple.com https://idmsa.apple.com.cn https://signin.apple.com ; frame-src 'self' https://appleid.apple.com https://gsa.apple.com https://account.apple.com ; img-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://*.mzstatic.com data: https://*.apple.com https://*.icloud.com https://*.icloud-content.com https://*.icloud.com.cn https://*.icloud-content.com.cn ; media-src data: ; object-src 'none' ; script-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://idmsa.apple.com https://gsa.apple.com https://idmsa.apple.com.cn https://signin.apple.com ; style-src 'unsafe-inline' 'self' https://www.apple.com https://appleid.cdn-apple.com https://idmsa.apple.com https://gsa.apple.com https://idmsa.apple.com.cn https://signin.apple.com ;","content-type":"application/json;charset=UTF-8","date":"Sun, 23 Aug 2026 14:38:22 GMT","location":"/auth","referrer-policy":"origin","scnt":"AAAA-jExOEM0RDE2RTQ4QjQyMTJEMzVGMEUxMkUzQUZDMENFM0JCQzVGREZENTkwMjU2MzFEMjI4QTgxQUNBRTcyNTBGNDVGNzhEQURFRjIzMjkxOTg0NDU4RTgzMTM0MDQxNzQ3NjEyRkMwNDYyNEM4N0JDMTg0RDQ0RDdENkJDOTU5Mzk0QTQ4ODMxMDkyNTI3MzlBMzlEQkE3QkYwNkM2M0Y3NzFDMkMwRTY1M0JBMUFGQ0MzRTcwOTNGNjgwOEUwOUMzOEUyMkU1RDc5RkZGQzc5QkE5MjU4OEY5QzIzM0RERUQyOTQwRTMzQjQ2MTgwNHwyAAABoC8cphlYkK-bepgAxZN9EfhyE_R7yzck1FSMhkFXGs-WIi9xaQlvU7_9zG2UAAuZFpNJCA4zC1TpvQtKFrCeBix11ed38BxIBvwXicdZ90lc4hO7dw","server":"Apple","set-cookie":"acn01=n3xm5nZTBXkoZukyVTEYv+g7U4x5WimSyQ1hWsQxmwALmRau3iG+; Max-Age=31536000; Expires=Mon, 23 Aug 2027 14:38:22 GMT; Domain=apple.com; Path=/; Secure; HttpOnly","strict-transport-security":"max-age=31536000; includeSubDomains; preload","transfer-encoding":"chunked","vary":"accept-encoding","x-apple-auth-attributes":"o/y60ymdbTpip/f5YIem3W+vADlw3WR/YuwMUwpX98AKSzjYfzKEe0xKqt68CgWr2t9p6jNTPHX/lWcap+uQWb7daT9KUsZwMxN7IKrdziC+WZ6YMxlTPJ4v6R97oe8brjMPyYLvf0xFvbZyzKrcOB+6RB06wDeYlDguqaAmmJgjxlhqUOQM6vxSYZQ6jKbpKy/EKokDekJcVBZYYf/LcmAw+BkwmiSG81DhDY7yx4hZtNo34CyMg5SdXir3x42Fk2qVwAVU+5P4BGrgZHh5bHASaKEAC5kWrucfpA==","x-apple-i-request-id":"4a271e6e-9f00-11f1-92a2-65abcb96e0ad","x-apple-id-account-country":"DEU","x-apple-id-session-id":"118C4D16E48B4212D35F0E12E3AFC0CE3BBC5FDFD59025631D228A81ACAE7250F45F78DADEF23291984458E83134041747612FC04624C87BC184D44D7D6BC959394A4883109252739A39DBA7BF06C63F771C2C0E653BA1AFCC3E7093F6808E09C38E22E5D79FFFC79BA92588F9C233DDED2940E33B461804","x-apple-session-token":"xx5sjGypRbYvi6+BscYNcAXPzWwkFUtE0CDH32m43PGTvGXAJNR1FoLsnLFRO4mfiJHaz7ewuZ15SbavQo9DUhxXgJUAd9NK2ueiaXxWu27Sh/ANqF3mHKeGZy94iQDmdKQTxSTAexoLpdudktYfIKffShqh1jkea13G/HAWWkh9O6cs5PGW9NOgZgPs9OggCI4NZv+HibB+nAiDqJx6l6drk+6mYdtTV1SIuUc0rwc+k6mZjo/dXFyFO9ZwccCAQzp9iBi0DqxAkoyIa0qwjXSNFQqthgDVJMFStT3FQUlC57nXcZFW6I/NzeBcwHJW0B3QVGW6V3F/NMbhNzb93ct5WwyWuX0f0aUN1ObC9+b7Ohq4fvzRhyTi7zF5lKWW3QovCdpuKZ/vfvC5Mu+qqROPLiOH+WgifDol3BUgj7KESoTJ1Q4LwJPJrJJBsBthjVSKwrXhgjx8svsid9lXW04IV+X14JxLZ82hthmWtrDadHbSOAbOpQMIdyeCXkINArM5K1X/xiqmWIUaKV0KiG/1oXkLQaCMzEq9sD3ixBeZjOUeNG3Z639gCuD6w177knljm7vTF6+2HjR33k1F7ue1DCq9edWaIplQxTzJLD2FshY6zL8Mt/xV2IQ0l36CC3zBIMYXOGedpidL0h8TL6ku7ctVqA521rqwtI3G2RQKsoHs6ylXdXLM/gE06VrTCDolfiP7cVCCtkyI57t7797Eu+tfpET/8n0aq5yq6jhTCDAkl2L9t6bLWCUSMvPbUZYvIY5RmNiY2d/vq8umOEzRnL+lZNVPMeU82ae+/sZkskCahTBG8oe7uUrL27fgm+2b1de/ievOVPJ4OyljR8m44FZ5ZK8HmIEmxDuNHWTdRGZEXg2UW4Tv9o+LVCzozRHz5nojEfr2Dg5f0FIe6Shv3XDp/AuRhAkwLeprVYUUmcOMfT7Uu9YgjQMyD4WrVg1YBflmDGMq0EQSjXHBJfKpWHt6nI1G3JAtfMfPoYVE80+tMLqb47tddHavxzQMUY+VZ2Zz65Me0NLv7F6kZ3ExvAALmRau6EQ/","x-apple-twosv-trust-eligible":"true","x-buildversion":"R14","x-content-type-options":"nosniff","x-frame-options":"DENY","x-xss-protection":"1; mode=block"}
                                2026-08-23 16:38:22.407 - debug: icloud.0 (390760) [icloud.js] [authStore] Session saved to disk
                                2026-08-23 16:38:22.413 - debug: icloud.0 (390760) [icloud.js] [auth] 409 body: {
                                "authType" : "hsa2"
                                }
                                2026-08-23 16:38:22.413 - debug: icloud.0 (390760) [icloud.js] [auth] accountLogin body: {"accountCountryCode":"DEU","dsWebAuthToken":"(set)","extended_login":true,"trustToken":"(empty)"}
                                2026-08-23 16:38:22.414 - debug: icloud.0 (390760) [icloud.js] [auth] POST https://setup.icloud.com/setup/ws/1/accountLogin (accountLogin)
                                2026-08-23 16:38:23.159 - debug: icloud.0 (390760) [icloud.js] [authStore] Cookie jar saved to disk
                                2026-08-23 16:38:23.160 - debug: icloud.0 (390760) [icloud.js] [authStore] Session saved to disk
                                2026-08-23 16:38:23.161 - debug: icloud.0 (390760) [icloud.js] [auth] accountLogin (post-409) status: 200
                                2026-08-23 16:38:23.166 - debug: icloud.0 (390760) [icloud.js] [auth] accountLogin 200 — hsaTrustedBrowser=false, hsaChallengeRequired=true, requiresMfa=true
                                2026-08-23 16:38:23.167 - debug: icloud.0 (390760) [icloud.js] [auth] GET /appleauth/auth — fetching auth options
                                2026-08-23 16:38:23.439 - debug: icloud.0 (390760) [icloud.js] [auth] GET /appleauth/auth → 200: {
                                "phoneNumberVerification" : {
                                "trustedPhoneNumbers" : [ {
                                "numberWithDialCode" : "+49 •••• •••••70",
                                "nonFTEU" : true,
                                "obfuscatedNumber" : "•••• •••••70",
                                "lastTwoDigits" : "70",
                                "pushMode" : "sms",
                                "id" : 4
                                } ],
                                "securityCode" : {
                                "length" : 6,
                                "tooManyCodesSent" : false,
                                "tooManyCodesValidated" : false,
                                "securityCodeLocked" : false,
                                "securityCodeCooldown" : false
                                },
                                "authenticationType" : "hsa2",
                                "recoveryUrl" : "https://iforgot.apple.com/phone/add?prs_account_nm=meine_mail%40domain&autoSubmitAccount=true&appId=142",
                                "cantUsePhoneNumberUrl" : "https://iforgot.apple.com/iforgot/phone/add?context=cantuse&prs_account_nm=meine_mail%40domain&autoSubmitAccount=true&appId=142",
                                "recoveryWebUrl" : "https://iforgot.apple.com/password/verify/appleid?prs_account_nm=meine_mail%40domain&autoSubmitAccount=true&appId=142",
                                "repairPhoneNumberUrl" : "https://gsa.apple.com/appleid/account/manage/repair/verify/phone",
                                "repairPhoneNumberWebUrl" : "https://appleid.apple.com/widget/account/repair?#!repair",
                                "noTrustedDevices" : false,
                                "aboutTwoFactorAuthenticationUrl" : "https://support.apple.com/kb/HT204921",
                                "autoVerified" : false,
                                "showAutoVerificationUI" : false,
                                "supportsCustodianRecovery" : false,
                                "hideSendSMSCodeOption" : false,
                                "supervisedChangePasswordFlow" : false,
                                "enableNonFTEU" : true,
                                "content" : {
                                "enterCodeDescription" : "Enter the verification code sent to your Apple devices.",
                                "sendCodeDescription" : "Apple can send another verification code to your other Apple devices.",
                                "resendCodeLink" : "Resend code to devices",
                                "canNotGetCodeLink" : "Can’t get to your devices?",
                                "canNotGetCodeTitle" : "Can’t get to your devices?"
                                },
                                "managedAccount" : false,
                                "supportsRecovery" : true,
                                "restrictedAccount" : false,
                                "trustedPhoneNumber" : {
                                "numberWithDialCode" : "+49 •••• •••••70",
                                "nonFTEU" : true,
                                "obfuscatedNumber" : "•••• •••••70",
                                "lastTwoDigits" : "70",
                                "pushMode" : "sms",
                                "id" : 4
                                },
                                "hsa2Account" : true
                                },
                                "apnsTopic" : "com.apple.idmsauthwidget",
                                "apnsEnvironment" : "prod",
                                "webSocketUrl" : "websocket.push.apple.com"
                                }
                                2026-08-23 16:38:23.440 - debug: icloud.0 (390760) [icloud.js] [auth] Trusted phone: id=4, nonFTEU=true, pushMode=sms
                                2026-08-23 16:38:23.440 - debug: icloud.0 (390760) [icloud.js] [auth] PUT /appleauth/auth/verify/trusteddevice — requesting device push
                                2026-08-23 16:38:23.626 - debug: icloud.0 (390760) [icloud.js] [auth] PUT verify/trusteddevice → 405:
                                2026-08-23 16:38:23.626 - debug: icloud.0 (390760) [icloud.js] State changed to: MfaRequested
                                2026-08-23 16:38:23.627 - warn: icloud.0 (390760) MFA required — enter the 6-digit Apple code into state mfa.code
                                2026-08-23 16:38:23.627 - debug: icloud.0 (390760) iCloud status is now: MfaRequested
                                2026-08-23 16:38:23.628 - debug: icloud.0 (390760) authenticate() returned — status: MfaRequested
                                2026-08-23 16:38:34.518 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:37.529 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:38.947 - debug: icloud.0 (390760) Message received: command="requestSmsMfa", message="{}"
                                2026-08-23 16:38:38.948 - info: icloud.0 (390760) Admin UI: requesting MFA code via SMS
                                2026-08-23 16:38:38.949 - debug: icloud.0 (390760) [icloud.js] [auth] PUT /appleauth/auth/verify/phone — requesting SMS code to phone id 4
                                2026-08-23 16:38:39.920 - debug: icloud.0 (390760) [icloud.js] [auth] SMS request → 200: {
                                "trustedPhoneNumbers" : [ {
                                "numberWithDialCode" : "+49 •••• •••••70",
                                "nonFTEU" : true,
                                "obfuscatedNumber" : "•••• •••••70",
                                "lastTwoDigits" : "70",
                                "pushMode" : "sms",
                                "i
                                2026-08-23 16:38:40.539 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:43.548 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:46.560 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:48.359 - debug: icloud.0 (390760) Message received: command="submitMfa", message=""053137""
                                2026-08-23 16:38:48.361 - debug: icloud.0 (390760) [icloud.js] [auth] POST /verify/phone/securitycode (phone id 4, mode sms)
                                2026-08-23 16:38:49.354 - debug: icloud.0 (390760) [icloud.js] [auth] verify sms securitycode → 409: {
                                "trustedPhoneNumbers" : [ {
                                "nonFTEU" : true,
                                "pushMode" : "sms",
                                "obfuscatedNumber" : "•••• •••••70",
                                "lastTwoDigits" : "70",
                                "numberWithDialCode" : "+49 •••• •••••70",
                                "id" : 4
                                } ],
                                "phoneNumber" : {
                                "nonFTEU" : true,
                                "pushMode" : "sms",
                                "obfuscatedNumbe
                                2026-08-23 16:38:49.355 - debug: icloud.0 (390760) [icloud.js] [auth] POST /verify/trusteddevice/securitycode (device push)
                                2026-08-23 16:38:49.513 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:49.815 - debug: icloud.0 (390760) [icloud.js] [auth] verify device securitycode → 400: {
                                "service_errors" : [ {
                                "code" : "-21669",
                                "title" : "Incorrect Verification Code",
                                "message" : "Incorrect verification code.",
                                "suppressDismissal" : false
                                } ],
                                "hasError" : true
                                }
                                2026-08-23 16:38:52.528 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:55.542 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:38:58.555 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:01.568 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:04.513 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:07.523 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:10.537 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:13.554 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:16.571 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:19.531 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:22.541 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:25.550 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:28.564 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:31.578 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:34.584 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:37.599 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:40.611 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                2026-08-23 16:39:43.626 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                

                                Ich hoffe jetzt einfach mal, dass ich da keine schützenswerten Infos drin gelassen habe, falls ja, bitte Bescheid geben :-)

                                Falls ich bei weiteren Durchläufen einen kleineren Ausschnitt zeigen soll, bitte ebenfalls Bescheid geben!

                                Vielleicht enthält das Log ja schon ein paar interessante Infos...

                                Nochmals herzlichen Dank!

                                T 1 Antwort Letzte Antwort
                                0
                                • P peterle828

                                  @ticaki

                                  ich habe die Version 1.0.1 nochmal laufen lassen mit Debug-Messages... hier ist das Log... nur meinen Account habe ich durch meine_mail@domain ersetzt...

                                  2026-08-23 16:38:19.083 - debug: icloud.0 (390760) Redis Objects: Use Redis connection: 127.0.0.1:6379
                                  2026-08-23 16:38:19.115 - debug: icloud.0 (390760) Objects client ready ... initialize now
                                  2026-08-23 16:38:19.117 - debug: icloud.0 (390760) Objects create System PubSub Client
                                  2026-08-23 16:38:19.119 - debug: icloud.0 (390760) Objects create User PubSub Client
                                  2026-08-23 16:38:19.234 - debug: icloud.0 (390760) Objects client initialize lua scripts
                                  2026-08-23 16:38:19.240 - debug: icloud.0 (390760) Objects connected to redis: 127.0.0.1:6379
                                  2026-08-23 16:38:19.259 - debug: icloud.0 (390760) Redis States: Use Redis connection: 127.0.0.1:6379
                                  2026-08-23 16:38:19.266 - debug: icloud.0 (390760) States create System PubSub Client
                                  2026-08-23 16:38:19.267 - debug: icloud.0 (390760) States create User PubSub Client
                                  2026-08-23 16:38:19.279 - debug: icloud.0 (390760) States connected to redis: 127.0.0.1:6379
                                  2026-08-23 16:38:19.498 - info: icloud.0 (390760) starting. Version 1.0.1 (non-npm: ticaki/ioBroker.icloud) in /opt/iobroker/node_modules/iobroker.icloud, node: v24.19.0, js-controller: 7.2.2
                                  2026-08-23 16:38:19.520 - debug: icloud.0 (390760) onReady called
                                  2026-08-23 16:38:19.550 - debug: icloud.0 (390760) Config OK — username: meine_mail@domain, password: **********
                                  2026-08-23 16:38:19.552 - debug: icloud.0 (390760) Extending object account with {"type":"channel","common":{"name":"Account Information"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.569 - debug: icloud.0 (390760) Extending object account.fullName with {"type":"state","common":{"name":"Full Name","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.581 - debug: icloud.0 (390760) Extending object account.firstName with {"type":"state","common":{"name":"First Name","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.594 - debug: icloud.0 (390760) Extending object account.lastName with {"type":"state","common":{"name":"Last Name","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.606 - debug: icloud.0 (390760) Extending object account.appleId with {"type":"state","common":{"name":"Apple ID","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.617 - debug: icloud.0 (390760) Extending object account.countryCode with {"type":"state","common":{"name":"Country Code","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.628 - debug: icloud.0 (390760) Extending object mfa with {"type":"channel","common":{"name":"Multi-Factor Authentication"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.635 - debug: icloud.0 (390760) Extending object mfa.code with {"type":"state","common":{"name":"MFA Code (enter 6-digit code here)","type":"string","role":"text","read":true,"write":true,"def":""},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.647 - debug: icloud.0 (390760) Extending object mfa.required with {"type":"state","common":{"name":"MFA Required","type":"boolean","role":"indicator","read":true,"write":false,"def":false},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.659 - debug: icloud.0 (390760) Extending object mfa.requestSmsCode with {"type":"state","common":{"name":"Request MFA code via SMS (set to true)","type":"boolean","role":"button","read":true,"write":true,"def":false},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.669 - debug: icloud.0 (390760) Extending object mfa.useSecurityKey with {"type":"state","common":{"name":"Authenticate with security key (set to true)","type":"boolean","role":"button","read":true,"write":true,"def":false},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.679 - debug: icloud.0 (390760) Extending object mfa.securityKeySupported with {"type":"state","common":{"name":"Security-key login supported on this host","type":"boolean","role":"indicator","read":true,"write":false,"def":false},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.694 - debug: icloud.0 (390760) Extending object mfa.securityKeyStatus with {"type":"state","common":{"name":"Security-key login status","type":"string","role":"text","read":true,"write":false,"def":""},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.703 - debug: icloud.0 (390760) Extending object account.storage with {"type":"channel","common":{"name":"Storage"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.709 - debug: icloud.0 (390760) Extending object account.storage.usedMB with {"type":"state","common":{"name":"Used Storage","type":"number","role":"value","read":true,"write":false,"unit":"MB"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.714 - debug: icloud.0 (390760) Extending object account.storage.totalMB with {"type":"state","common":{"name":"Total Storage","type":"number","role":"value","read":true,"write":false,"unit":"MB"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.720 - debug: icloud.0 (390760) Extending object account.storage.availableMB with {"type":"state","common":{"name":"Available Storage","type":"number","role":"value","read":true,"write":false,"unit":"MB"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.726 - debug: icloud.0 (390760) Extending object account.storage.usedPercent with {"type":"state","common":{"name":"Used Percent","type":"number","role":"value","read":true,"write":false,"unit":"%"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.732 - debug: icloud.0 (390760) Extending object account.storage.overQuota with {"type":"state","common":{"name":"Over Quota","type":"boolean","role":"indicator.alarm","read":true,"write":false},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.739 - debug: icloud.0 (390760) Extending object account.storage.almostFull with {"type":"state","common":{"name":"Almost Full","type":"boolean","role":"indicator.alarm","read":true,"write":false},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.745 - debug: icloud.0 (390760) Extending object account.storage.paidQuota with {"type":"state","common":{"name":"Paid Quota","type":"boolean","role":"indicator","read":true,"write":false},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.752 - debug: icloud.0 (390760) Extending object account.storage.byMedia with {"type":"channel","common":{"name":"Storage by Media Type"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.758 - debug: icloud.0 (390760) Extending object account.storage.family with {"type":"channel","common":{"name":"Family Storage"},"native":{}} (previous: none)
                                  2026-08-23 16:38:19.763 - debug: icloud.0 (390760) Objects created/verified
                                  2026-08-23 16:38:19.828 - debug: icloud.0 (390760) State cache pre-populated with 12 entries
                                  2026-08-23 16:38:19.830 - debug: icloud.0 (390760) Subscribed to mfa.code
                                  2026-08-23 16:38:19.832 - debug: icloud.0 (390760) Using data directory: /opt/iobroker/iobroker-data/icloud.0
                                  2026-08-23 16:38:19.835 - debug: icloud.0 (390760) Calling icloud.authenticate()
                                  2026-08-23 16:38:19.840 - debug: icloud.0 (390760) [icloud.js] [authStore] Session loaded from disk
                                  2026-08-23 16:38:19.872 - debug: icloud.0 (390760) [icloud.js] [authStore] Cookie jar loaded from disk
                                  2026-08-23 16:38:19.873 - debug: icloud.0 (390760) [icloud.js] [authStore] No legacy trust-token file found
                                  2026-08-23 16:38:19.874 - debug: icloud.0 (390760) [icloud.js] State changed to: Started
                                  2026-08-23 16:38:19.875 - debug: icloud.0 (390760) iCloud auth started — credentials submitted, waiting for response
                                  2026-08-23 16:38:19.875 - debug: icloud.0 (390760) [icloud.js] [auth] Validating existing session token...
                                  2026-08-23 16:38:20.623 - debug: icloud.0 (390760) [icloud.js] [auth] Session token invalid (HTTP 421) — doing full signin
                                  2026-08-23 16:38:20.671 - debug: icloud.0 (390760) [icloud.js] [auth] SRP init → POST https://idmsa.apple.com/appleauth/auth/signin/init
                                  2026-08-23 16:38:21.485 - debug: icloud.0 (390760) [icloud.js] [auth] SRP init response status: 200
                                  2026-08-23 16:38:21.555 - debug: icloud.0 (390760) [icloud.js] [auth] signin → POST https://idmsa.apple.com/appleauth/auth/signin/complete?isRememberMeEnabled=true
                                  2026-08-23 16:38:22.402 - debug: icloud.0 (390760) [icloud.js] [auth] signin response status: 409
                                  2026-08-23 16:38:22.405 - debug: icloud.0 (390760) [icloud.js] [auth] signin response headers: {"cache-control":"no-store","connection":"keep-alive","content-encoding":"gzip","content-language":"en-US-x-lvariant-USA","content-security-policy":"default-src 'self' ; child-src blob: ; connect-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://webcourier.sandbox.push.apple.com https://xp-qa.apple.com wss://websocket.push.apple.com ; font-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://idmsa.apple.com https://gsa.apple.com https://idmsa.apple.com.cn https://signin.apple.com ; frame-src 'self' https://appleid.apple.com https://gsa.apple.com https://account.apple.com ; img-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://*.mzstatic.com data: https://*.apple.com https://*.icloud.com https://*.icloud-content.com https://*.icloud.com.cn https://*.icloud-content.com.cn ; media-src data: ; object-src 'none' ; script-src 'self' https://www.apple.com https://appleid.cdn-apple.com https://idmsa.apple.com https://gsa.apple.com https://idmsa.apple.com.cn https://signin.apple.com ; style-src 'unsafe-inline' 'self' https://www.apple.com https://appleid.cdn-apple.com https://idmsa.apple.com https://gsa.apple.com https://idmsa.apple.com.cn https://signin.apple.com ;","content-type":"application/json;charset=UTF-8","date":"Sun, 23 Aug 2026 14:38:22 GMT","location":"/auth","referrer-policy":"origin","scnt":"AAAA-jExOEM0RDE2RTQ4QjQyMTJEMzVGMEUxMkUzQUZDMENFM0JCQzVGREZENTkwMjU2MzFEMjI4QTgxQUNBRTcyNTBGNDVGNzhEQURFRjIzMjkxOTg0NDU4RTgzMTM0MDQxNzQ3NjEyRkMwNDYyNEM4N0JDMTg0RDQ0RDdENkJDOTU5Mzk0QTQ4ODMxMDkyNTI3MzlBMzlEQkE3QkYwNkM2M0Y3NzFDMkMwRTY1M0JBMUFGQ0MzRTcwOTNGNjgwOEUwOUMzOEUyMkU1RDc5RkZGQzc5QkE5MjU4OEY5QzIzM0RERUQyOTQwRTMzQjQ2MTgwNHwyAAABoC8cphlYkK-bepgAxZN9EfhyE_R7yzck1FSMhkFXGs-WIi9xaQlvU7_9zG2UAAuZFpNJCA4zC1TpvQtKFrCeBix11ed38BxIBvwXicdZ90lc4hO7dw","server":"Apple","set-cookie":"acn01=n3xm5nZTBXkoZukyVTEYv+g7U4x5WimSyQ1hWsQxmwALmRau3iG+; Max-Age=31536000; Expires=Mon, 23 Aug 2027 14:38:22 GMT; Domain=apple.com; Path=/; Secure; HttpOnly","strict-transport-security":"max-age=31536000; includeSubDomains; preload","transfer-encoding":"chunked","vary":"accept-encoding","x-apple-auth-attributes":"o/y60ymdbTpip/f5YIem3W+vADlw3WR/YuwMUwpX98AKSzjYfzKEe0xKqt68CgWr2t9p6jNTPHX/lWcap+uQWb7daT9KUsZwMxN7IKrdziC+WZ6YMxlTPJ4v6R97oe8brjMPyYLvf0xFvbZyzKrcOB+6RB06wDeYlDguqaAmmJgjxlhqUOQM6vxSYZQ6jKbpKy/EKokDekJcVBZYYf/LcmAw+BkwmiSG81DhDY7yx4hZtNo34CyMg5SdXir3x42Fk2qVwAVU+5P4BGrgZHh5bHASaKEAC5kWrucfpA==","x-apple-i-request-id":"4a271e6e-9f00-11f1-92a2-65abcb96e0ad","x-apple-id-account-country":"DEU","x-apple-id-session-id":"118C4D16E48B4212D35F0E12E3AFC0CE3BBC5FDFD59025631D228A81ACAE7250F45F78DADEF23291984458E83134041747612FC04624C87BC184D44D7D6BC959394A4883109252739A39DBA7BF06C63F771C2C0E653BA1AFCC3E7093F6808E09C38E22E5D79FFFC79BA92588F9C233DDED2940E33B461804","x-apple-session-token":"xx5sjGypRbYvi6+BscYNcAXPzWwkFUtE0CDH32m43PGTvGXAJNR1FoLsnLFRO4mfiJHaz7ewuZ15SbavQo9DUhxXgJUAd9NK2ueiaXxWu27Sh/ANqF3mHKeGZy94iQDmdKQTxSTAexoLpdudktYfIKffShqh1jkea13G/HAWWkh9O6cs5PGW9NOgZgPs9OggCI4NZv+HibB+nAiDqJx6l6drk+6mYdtTV1SIuUc0rwc+k6mZjo/dXFyFO9ZwccCAQzp9iBi0DqxAkoyIa0qwjXSNFQqthgDVJMFStT3FQUlC57nXcZFW6I/NzeBcwHJW0B3QVGW6V3F/NMbhNzb93ct5WwyWuX0f0aUN1ObC9+b7Ohq4fvzRhyTi7zF5lKWW3QovCdpuKZ/vfvC5Mu+qqROPLiOH+WgifDol3BUgj7KESoTJ1Q4LwJPJrJJBsBthjVSKwrXhgjx8svsid9lXW04IV+X14JxLZ82hthmWtrDadHbSOAbOpQMIdyeCXkINArM5K1X/xiqmWIUaKV0KiG/1oXkLQaCMzEq9sD3ixBeZjOUeNG3Z639gCuD6w177knljm7vTF6+2HjR33k1F7ue1DCq9edWaIplQxTzJLD2FshY6zL8Mt/xV2IQ0l36CC3zBIMYXOGedpidL0h8TL6ku7ctVqA521rqwtI3G2RQKsoHs6ylXdXLM/gE06VrTCDolfiP7cVCCtkyI57t7797Eu+tfpET/8n0aq5yq6jhTCDAkl2L9t6bLWCUSMvPbUZYvIY5RmNiY2d/vq8umOEzRnL+lZNVPMeU82ae+/sZkskCahTBG8oe7uUrL27fgm+2b1de/ievOVPJ4OyljR8m44FZ5ZK8HmIEmxDuNHWTdRGZEXg2UW4Tv9o+LVCzozRHz5nojEfr2Dg5f0FIe6Shv3XDp/AuRhAkwLeprVYUUmcOMfT7Uu9YgjQMyD4WrVg1YBflmDGMq0EQSjXHBJfKpWHt6nI1G3JAtfMfPoYVE80+tMLqb47tddHavxzQMUY+VZ2Zz65Me0NLv7F6kZ3ExvAALmRau6EQ/","x-apple-twosv-trust-eligible":"true","x-buildversion":"R14","x-content-type-options":"nosniff","x-frame-options":"DENY","x-xss-protection":"1; mode=block"}
                                  2026-08-23 16:38:22.407 - debug: icloud.0 (390760) [icloud.js] [authStore] Session saved to disk
                                  2026-08-23 16:38:22.413 - debug: icloud.0 (390760) [icloud.js] [auth] 409 body: {
                                  "authType" : "hsa2"
                                  }
                                  2026-08-23 16:38:22.413 - debug: icloud.0 (390760) [icloud.js] [auth] accountLogin body: {"accountCountryCode":"DEU","dsWebAuthToken":"(set)","extended_login":true,"trustToken":"(empty)"}
                                  2026-08-23 16:38:22.414 - debug: icloud.0 (390760) [icloud.js] [auth] POST https://setup.icloud.com/setup/ws/1/accountLogin (accountLogin)
                                  2026-08-23 16:38:23.159 - debug: icloud.0 (390760) [icloud.js] [authStore] Cookie jar saved to disk
                                  2026-08-23 16:38:23.160 - debug: icloud.0 (390760) [icloud.js] [authStore] Session saved to disk
                                  2026-08-23 16:38:23.161 - debug: icloud.0 (390760) [icloud.js] [auth] accountLogin (post-409) status: 200
                                  2026-08-23 16:38:23.166 - debug: icloud.0 (390760) [icloud.js] [auth] accountLogin 200 — hsaTrustedBrowser=false, hsaChallengeRequired=true, requiresMfa=true
                                  2026-08-23 16:38:23.167 - debug: icloud.0 (390760) [icloud.js] [auth] GET /appleauth/auth — fetching auth options
                                  2026-08-23 16:38:23.439 - debug: icloud.0 (390760) [icloud.js] [auth] GET /appleauth/auth → 200: {
                                  "phoneNumberVerification" : {
                                  "trustedPhoneNumbers" : [ {
                                  "numberWithDialCode" : "+49 •••• •••••70",
                                  "nonFTEU" : true,
                                  "obfuscatedNumber" : "•••• •••••70",
                                  "lastTwoDigits" : "70",
                                  "pushMode" : "sms",
                                  "id" : 4
                                  } ],
                                  "securityCode" : {
                                  "length" : 6,
                                  "tooManyCodesSent" : false,
                                  "tooManyCodesValidated" : false,
                                  "securityCodeLocked" : false,
                                  "securityCodeCooldown" : false
                                  },
                                  "authenticationType" : "hsa2",
                                  "recoveryUrl" : "https://iforgot.apple.com/phone/add?prs_account_nm=meine_mail%40domain&autoSubmitAccount=true&appId=142",
                                  "cantUsePhoneNumberUrl" : "https://iforgot.apple.com/iforgot/phone/add?context=cantuse&prs_account_nm=meine_mail%40domain&autoSubmitAccount=true&appId=142",
                                  "recoveryWebUrl" : "https://iforgot.apple.com/password/verify/appleid?prs_account_nm=meine_mail%40domain&autoSubmitAccount=true&appId=142",
                                  "repairPhoneNumberUrl" : "https://gsa.apple.com/appleid/account/manage/repair/verify/phone",
                                  "repairPhoneNumberWebUrl" : "https://appleid.apple.com/widget/account/repair?#!repair",
                                  "noTrustedDevices" : false,
                                  "aboutTwoFactorAuthenticationUrl" : "https://support.apple.com/kb/HT204921",
                                  "autoVerified" : false,
                                  "showAutoVerificationUI" : false,
                                  "supportsCustodianRecovery" : false,
                                  "hideSendSMSCodeOption" : false,
                                  "supervisedChangePasswordFlow" : false,
                                  "enableNonFTEU" : true,
                                  "content" : {
                                  "enterCodeDescription" : "Enter the verification code sent to your Apple devices.",
                                  "sendCodeDescription" : "Apple can send another verification code to your other Apple devices.",
                                  "resendCodeLink" : "Resend code to devices",
                                  "canNotGetCodeLink" : "Can’t get to your devices?",
                                  "canNotGetCodeTitle" : "Can’t get to your devices?"
                                  },
                                  "managedAccount" : false,
                                  "supportsRecovery" : true,
                                  "restrictedAccount" : false,
                                  "trustedPhoneNumber" : {
                                  "numberWithDialCode" : "+49 •••• •••••70",
                                  "nonFTEU" : true,
                                  "obfuscatedNumber" : "•••• •••••70",
                                  "lastTwoDigits" : "70",
                                  "pushMode" : "sms",
                                  "id" : 4
                                  },
                                  "hsa2Account" : true
                                  },
                                  "apnsTopic" : "com.apple.idmsauthwidget",
                                  "apnsEnvironment" : "prod",
                                  "webSocketUrl" : "websocket.push.apple.com"
                                  }
                                  2026-08-23 16:38:23.440 - debug: icloud.0 (390760) [icloud.js] [auth] Trusted phone: id=4, nonFTEU=true, pushMode=sms
                                  2026-08-23 16:38:23.440 - debug: icloud.0 (390760) [icloud.js] [auth] PUT /appleauth/auth/verify/trusteddevice — requesting device push
                                  2026-08-23 16:38:23.626 - debug: icloud.0 (390760) [icloud.js] [auth] PUT verify/trusteddevice → 405:
                                  2026-08-23 16:38:23.626 - debug: icloud.0 (390760) [icloud.js] State changed to: MfaRequested
                                  2026-08-23 16:38:23.627 - warn: icloud.0 (390760) MFA required — enter the 6-digit Apple code into state mfa.code
                                  2026-08-23 16:38:23.627 - debug: icloud.0 (390760) iCloud status is now: MfaRequested
                                  2026-08-23 16:38:23.628 - debug: icloud.0 (390760) authenticate() returned — status: MfaRequested
                                  2026-08-23 16:38:34.518 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:37.529 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:38.947 - debug: icloud.0 (390760) Message received: command="requestSmsMfa", message="{}"
                                  2026-08-23 16:38:38.948 - info: icloud.0 (390760) Admin UI: requesting MFA code via SMS
                                  2026-08-23 16:38:38.949 - debug: icloud.0 (390760) [icloud.js] [auth] PUT /appleauth/auth/verify/phone — requesting SMS code to phone id 4
                                  2026-08-23 16:38:39.920 - debug: icloud.0 (390760) [icloud.js] [auth] SMS request → 200: {
                                  "trustedPhoneNumbers" : [ {
                                  "numberWithDialCode" : "+49 •••• •••••70",
                                  "nonFTEU" : true,
                                  "obfuscatedNumber" : "•••• •••••70",
                                  "lastTwoDigits" : "70",
                                  "pushMode" : "sms",
                                  "i
                                  2026-08-23 16:38:40.539 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:43.548 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:46.560 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:48.359 - debug: icloud.0 (390760) Message received: command="submitMfa", message=""053137""
                                  2026-08-23 16:38:48.361 - debug: icloud.0 (390760) [icloud.js] [auth] POST /verify/phone/securitycode (phone id 4, mode sms)
                                  2026-08-23 16:38:49.354 - debug: icloud.0 (390760) [icloud.js] [auth] verify sms securitycode → 409: {
                                  "trustedPhoneNumbers" : [ {
                                  "nonFTEU" : true,
                                  "pushMode" : "sms",
                                  "obfuscatedNumber" : "•••• •••••70",
                                  "lastTwoDigits" : "70",
                                  "numberWithDialCode" : "+49 •••• •••••70",
                                  "id" : 4
                                  } ],
                                  "phoneNumber" : {
                                  "nonFTEU" : true,
                                  "pushMode" : "sms",
                                  "obfuscatedNumbe
                                  2026-08-23 16:38:49.355 - debug: icloud.0 (390760) [icloud.js] [auth] POST /verify/trusteddevice/securitycode (device push)
                                  2026-08-23 16:38:49.513 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:49.815 - debug: icloud.0 (390760) [icloud.js] [auth] verify device securitycode → 400: {
                                  "service_errors" : [ {
                                  "code" : "-21669",
                                  "title" : "Incorrect Verification Code",
                                  "message" : "Incorrect verification code.",
                                  "suppressDismissal" : false
                                  } ],
                                  "hasError" : true
                                  }
                                  2026-08-23 16:38:52.528 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:55.542 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:38:58.555 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:01.568 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:04.513 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:07.523 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:10.537 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:13.554 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:16.571 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:19.531 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:22.541 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:25.550 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:28.564 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:31.578 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:34.584 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:37.599 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:40.611 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  2026-08-23 16:39:43.626 - debug: icloud.0 (390760) Message received: command="getMfaStatus", message="{}"
                                  

                                  Ich hoffe jetzt einfach mal, dass ich da keine schützenswerten Infos drin gelassen habe, falls ja, bitte Bescheid geben :-)

                                  Falls ich bei weiteren Durchläufen einen kleineren Ausschnitt zeigen soll, bitte ebenfalls Bescheid geben!

                                  Vielleicht enthält das Log ja schon ein paar interessante Infos...

                                  Nochmals herzlichen Dank!

                                  T Nicht stören
                                  T Nicht stören
                                  ticaki
                                  schrieb am zuletzt editiert von
                                  #73

                                  @peterle828
                                  hast recht, ich hab wohl die nachricht geschrieben, aber noch nicht das release angestossen und dann 2 stunden später nur das vergessene Posting gesehen - release ist jetzt auf dem weg.

                                  also v1.0.2 sollte in wenigen minuten auf npm sein

                                  Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                                  Spenden

                                  1 Antwort Letzte Antwort
                                  0
                                  • P Offline
                                    P Offline
                                    peterle828
                                    schrieb am zuletzt editiert von
                                    #74

                                    @ticaki
                                    Herzlichen Dank, noch dazu am Sonntag!

                                    Funktioniert bei mir jetzt einwandfrei!
                                    (musste es direkt von github holen, über iobroker ging es noch nicht, da kam eine Fehlermeldung)

                                    1 Antwort Letzte Antwort
                                    1
                                    • T Nicht stören
                                      T Nicht stören
                                      ticaki
                                      schrieb am zuletzt editiert von
                                      #75

                                      super und danke

                                      Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                                      Spenden

                                      JLegJ 1 Antwort Letzte Antwort
                                      -1
                                      • T ticaki

                                        super und danke

                                        JLegJ Offline
                                        JLegJ Offline
                                        JLeg
                                        schrieb am zuletzt editiert von
                                        #76

                                        @ticaki Hi, wollte diesen Adapter gerade installieren - sehe in der Instanz-Konfig leider nur eine Meldung

                                        b2566ebe-396c-439d-8465-5805e4f71f71-image.jpeg

                                        Ja, bin auf Admin 8.0.5 - da andere Adapter bereits >= 8 erfordern, geht's auch nicht mehr zurück...

                                        Ausserdem sagt die Konsole noch:

                                        GET
                                        	/adapter/icloud/custom/mf-manifest.json
                                        Status
                                        404
                                        Not Found
                                        
                                        OliverIOO 1 Antwort Letzte Antwort
                                        0
                                        • JLegJ JLeg

                                          @ticaki Hi, wollte diesen Adapter gerade installieren - sehe in der Instanz-Konfig leider nur eine Meldung

                                          b2566ebe-396c-439d-8465-5805e4f71f71-image.jpeg

                                          Ja, bin auf Admin 8.0.5 - da andere Adapter bereits >= 8 erfordern, geht's auch nicht mehr zurück...

                                          Ausserdem sagt die Konsole noch:

                                          GET
                                          	/adapter/icloud/custom/mf-manifest.json
                                          Status
                                          404
                                          Not Found
                                          
                                          OliverIOO Offline
                                          OliverIOO Offline
                                          OliverIO
                                          schrieb am zuletzt editiert von OliverIO
                                          #77

                                          @ticaki

                                          @JLeg sagte:

                                          /adapter/icloud/custom/mf-manifest.json

                                          das hatte ich mal noch nachtragen lassen.
                                          der fehler kam bei mir auch bei der umstellung von mytimes auf admin8
                                          Die manifest datei muss auch mit kopiert werden.

                                          https://github.com/ioBroker/adapter-react-v5/blob/main/MIGRATION_8_10.md#copy-mf-manifestjson

                                          Meine Adapter und Widgets
                                          TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                                          Links im Profil

                                          1 Antwort Letzte Antwort
                                          0

                                          Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                                          Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                                          Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                                          Registrieren Anmelden
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          465

                                          Online

                                          33.0k

                                          Benutzer

                                          83.6k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2026
                                          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