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. English
  3. ioBroker general
  4. Simple API Use SOLVED

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

Simple API Use SOLVED

Geplant Angeheftet Gesperrt Verschoben ioBroker general
apisimple api
22 Beiträge 5 Kommentatoren 4.7k Aufrufe 4 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.
  • A Offline
    A Offline
    ap2017
    schrieb am zuletzt editiert von ap2017
    #1

    I would like to get motion notification from MotionEye via Simple Api using method GET
    http: // IP_ioBroker: 8087/ set / javascript.0.Pi-detection? Value = true
    I added Pi-detection user.data.0 Boolean variable. Is there special setting needed for Simple APi adapter?

    efede08a-c2bd-4e7e-bb7f-b9af09c07367-image.png

    UncleSamU 1 Antwort Letzte Antwort
    0
    • A ap2017

      I would like to get motion notification from MotionEye via Simple Api using method GET
      http: // IP_ioBroker: 8087/ set / javascript.0.Pi-detection? Value = true
      I added Pi-detection user.data.0 Boolean variable. Is there special setting needed for Simple APi adapter?

      efede08a-c2bd-4e7e-bb7f-b9af09c07367-image.png

      UncleSamU Offline
      UncleSamU Offline
      UncleSam
      Developer
      schrieb am zuletzt editiert von UncleSam
      #2

      @ap2017 What are you trying to do and what is your issue?

      The URL you are providing contains a lot of spaces (which is wrong).

      Also you say user.data.0 (which doesn't exist) and then try to use javascript.0. IDs must match exactly the IDs in ioBroker. Simply use the "copy" button next to the state ID to get the full ID in the correct format.

      Bitte bei Problemen mit meinen Adaptern, Issue auf GitHub erfassen: Loxone | I2C | Luxtronik2
      ♡-lichen Dank an meine Sponsoren

      A 1 Antwort Letzte Antwort
      0
      • UncleSamU UncleSam

        @ap2017 What are you trying to do and what is your issue?

        The URL you are providing contains a lot of spaces (which is wrong).

        Also you say user.data.0 (which doesn't exist) and then try to use javascript.0. IDs must match exactly the IDs in ioBroker. Simply use the "copy" button next to the state ID to get the full ID in the correct format.

        A Offline
        A Offline
        ap2017
        schrieb am zuletzt editiert von
        #3

        @UncleSam Thank you for quick response and good comments. My actual URL does not have extra spaces:
        http://iobrokerIP:8087/set/javascript.0.Pi-detection?Value=true

        I created PI-detection variable in javascript.0 folder and monitoring value of this variable in response to motion detection from MotionEye, but so far I am getting nothing. My MotionEye Web Hook URL is http://iobrokerIP:8087/set/javascript.0.Pi-detection?Value=true with HTTP method set as GET

        paul53P UncleSamU 2 Antworten Letzte Antwort
        0
        • A ap2017

          @UncleSam Thank you for quick response and good comments. My actual URL does not have extra spaces:
          http://iobrokerIP:8087/set/javascript.0.Pi-detection?Value=true

          I created PI-detection variable in javascript.0 folder and monitoring value of this variable in response to motion detection from MotionEye, but so far I am getting nothing. My MotionEye Web Hook URL is http://iobrokerIP:8087/set/javascript.0.Pi-detection?Value=true with HTTP method set as GET

          paul53P Offline
          paul53P Offline
          paul53
          schrieb am zuletzt editiert von paul53
          #4

          @ap2017
          Link is wrong (Value --> value).
          http://iobrokerip:8087/set/javascript.0.Pi-detection?value=true

          Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
          Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

          1 Antwort Letzte Antwort
          1
          • A ap2017

            @UncleSam Thank you for quick response and good comments. My actual URL does not have extra spaces:
            http://iobrokerIP:8087/set/javascript.0.Pi-detection?Value=true

            I created PI-detection variable in javascript.0 folder and monitoring value of this variable in response to motion detection from MotionEye, but so far I am getting nothing. My MotionEye Web Hook URL is http://iobrokerIP:8087/set/javascript.0.Pi-detection?Value=true with HTTP method set as GET

            UncleSamU Offline
            UncleSamU Offline
            UncleSam
            Developer
            schrieb am zuletzt editiert von
            #5

            @ap2017 Thanks for the clarifications.

            What happens if you open the URL in your browser? Do you get a JSON response similar to the following or an error message?

            {"id":"javascript.0.Pi-detection","value":true}
            

            How do you know that you are "getting nothing"?

            Bitte bei Problemen mit meinen Adaptern, Issue auf GitHub erfassen: Loxone | I2C | Luxtronik2
            ♡-lichen Dank an meine Sponsoren

            A 1 Antwort Letzte Antwort
            0
            • UncleSamU UncleSam

              @ap2017 Thanks for the clarifications.

              What happens if you open the URL in your browser? Do you get a JSON response similar to the following or an error message?

              {"id":"javascript.0.Pi-detection","value":true}
              

              How do you know that you are "getting nothing"?

              A Offline
              A Offline
              ap2017
              schrieb am zuletzt editiert von
              #6

              @UncleSam In browser I am getting error message
              "error: datapoint "javascript.0.Pi-detection" not found"
              I monitor variable PI-detection as Boolean widget in VIS

              UncleSamU 1 Antwort Letzte Antwort
              0
              • A ap2017

                @UncleSam In browser I am getting error message
                "error: datapoint "javascript.0.Pi-detection" not found"
                I monitor variable PI-detection as Boolean widget in VIS

                UncleSamU Offline
                UncleSamU Offline
                UncleSam
                Developer
                schrieb am zuletzt editiert von
                #7

                @ap2017 Can you please share a screenshot of your object tree in ioBroker where we can see the mentioned state (and its parents)?

                Bitte bei Problemen mit meinen Adaptern, Issue auf GitHub erfassen: Loxone | I2C | Luxtronik2
                ♡-lichen Dank an meine Sponsoren

                A 1 Antwort Letzte Antwort
                0
                • UncleSamU UncleSam

                  @ap2017 Can you please share a screenshot of your object tree in ioBroker where we can see the mentioned state (and its parents)?

                  A Offline
                  A Offline
                  ap2017
                  schrieb am zuletzt editiert von
                  #8

                  @UncleSam Here the screenshot. Do I need to have subfolder variables in my URL?

                  478101c6-03ea-4770-aca9-b414a5870a93-image.png

                  paul53P UncleSamU 2 Antworten Letzte Antwort
                  0
                  • A ap2017

                    @UncleSam Here the screenshot. Do I need to have subfolder variables in my URL?

                    478101c6-03ea-4770-aca9-b414a5870a93-image.png

                    paul53P Offline
                    paul53P Offline
                    paul53
                    schrieb am zuletzt editiert von paul53
                    #9

                    @ap2017
                    URL: http://iobrokerip:8087/set/javascript.0.variables.PI-detection?value=true

                    Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                    Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                    1 Antwort Letzte Antwort
                    0
                    • A ap2017

                      @UncleSam Here the screenshot. Do I need to have subfolder variables in my URL?

                      478101c6-03ea-4770-aca9-b414a5870a93-image.png

                      UncleSamU Offline
                      UncleSamU Offline
                      UncleSam
                      Developer
                      schrieb am zuletzt editiert von
                      #10

                      @ap2017 So, did you copy the state ID the way I asked you to?

                      Because it seems to me that the name should be javascript.0.variables.PI-detection

                      Bitte bei Problemen mit meinen Adaptern, Issue auf GitHub erfassen: Loxone | I2C | Luxtronik2
                      ♡-lichen Dank an meine Sponsoren

                      A 2 Antworten Letzte Antwort
                      0
                      • UncleSamU UncleSam

                        @ap2017 So, did you copy the state ID the way I asked you to?

                        Because it seems to me that the name should be javascript.0.variables.PI-detection

                        A Offline
                        A Offline
                        ap2017
                        schrieb am zuletzt editiert von ap2017
                        #11

                        @UncleSam Thank you, with subfolder "variables" added I am getting browser response
                        {"id":"javascript.0.variables.PI-detection","value":true,"val":true}

                        Now I need to figure out how MotionEye notification work, since I PI-detection does not change in response to motion

                        1 Antwort Letzte Antwort
                        0
                        • UncleSamU UncleSam

                          @ap2017 So, did you copy the state ID the way I asked you to?

                          Because it seems to me that the name should be javascript.0.variables.PI-detection

                          A Offline
                          A Offline
                          ap2017
                          schrieb am zuletzt editiert von
                          #12

                          @UncleSam Everything works now. I did not realized that I have to reset the web hook variable after motion is detected.

                          T 1 Antwort Letzte Antwort
                          1
                          • A ap2017

                            @UncleSam Everything works now. I did not realized that I have to reset the web hook variable after motion is detected.

                            T Offline
                            T Offline
                            tehMilcho
                            schrieb am zuletzt editiert von
                            #13

                            Hey there,

                            i got the same Error but little different problem. I have copyed the Object-Path with the little button.

                            so i build this URL:
                            http://SERVER:8087/set/0_userdata.0.VirtualDevices.hc3lite.FlurPIR-1?value=false&prettyPrint

                            The Url works fine in any browser but when i try to use it in my code i get:

                            "error: no value found for "0_userdata.0.VirtualDevices.hc3lite.FlurPIR-1". Use /set/id?value=1 or /set/id?value=1&wait=1000"

                            I will use it in a Lua Script that runs on the "Fibaro Home center lite". When i rebuild the URL to "toggle" it works fine.. i have no clue whats the issue .. because it makes no sense for me.

                            Lua Code:

                            local value = fibaro.getValue(52, "value")
                            local url
                            
                            -- Deside if value should be true or false
                            if (fibaro.getValue(52, "value") == true) then
                            url = 'http://SERVER:8087/set/0_userdata.0.VirtualDevices.hc3lite.FlurPIR-1?value=true&prettyPrint'
                            elseif (fibaro.getValue(52, "value") == false) then
                            url = 'SERVER/set/0_userdata.0.VirtualDevices.hc3lite.FlurPIR-1?value=false&prettyPrint'
                            else 
                            print ("No Match")
                            end
                            
                            print(url)
                            
                            local selfhttp = net.HTTPClient()
                            
                            local headers = {
                                    ["Accept"] = "application/json",
                                    ["Content-Type"] = 'application/json',
                                    ["Cache-Control"] = "no-cache"
                                }
                            
                            selfhttp:request(url, {
                              options={
                                method = 'GET',
                                headers = headers,
                                timeout = 5000
                              },
                             success = function(response) 
                                        print(response.status)
                                        print(response.data)
                                end,
                                error = function(message)
                                        print("error:", message)
                                end
                            })
                             
                            

                            anyone knows something? i think i had the same issue by try to use something like this in Android App - Tasker, but then give out and used toggle.

                            1 Antwort Letzte Antwort
                            0
                            • M Online
                              M Online
                              MCU
                              schrieb am zuletzt editiert von
                              #14

                              @tehmilcho sagte in Simple API Use SOLVED:

                              http://SERVER:8087/set/0_userdata.0.VirtualDevices.hc3lite.FlurPIR-1?value=true&prettyPrint

                              Try to encode the URL

                              let encodedUrl = encodeURIComponent(url);
                              

                              NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                              Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                              T 1 Antwort Letzte Antwort
                              0
                              • M MCU

                                @tehmilcho sagte in Simple API Use SOLVED:

                                http://SERVER:8087/set/0_userdata.0.VirtualDevices.hc3lite.FlurPIR-1?value=true&prettyPrint

                                Try to encode the URL

                                let encodedUrl = encodeURIComponent(url);
                                
                                T Offline
                                T Offline
                                tehMilcho
                                schrieb am zuletzt editiert von
                                #15

                                @mcu said in Simple API Use SOLVED:

                                let encodedUrl = encodeURIComponent(url);

                                the Lua Script in Fibaro seems not happy about it:

                                [24.11.2023] [22:43:48] [ERROR] [SCENE29]: (load):15: syntax error near 'encodedUrl

                                M 1 Antwort Letzte Antwort
                                0
                                • T tehMilcho

                                  @mcu said in Simple API Use SOLVED:

                                  let encodedUrl = encodeURIComponent(url);

                                  the Lua Script in Fibaro seems not happy about it:

                                  [24.11.2023] [22:43:48] [ERROR] [SCENE29]: (load):15: syntax error near 'encodedUrl

                                  M Online
                                  M Online
                                  MCU
                                  schrieb am zuletzt editiert von
                                  #16

                                  @tehmilcho In LUA seems to be

                                  local encodedUrl = url.escape(url)
                                  

                                  NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                                  Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                  T 1 Antwort Letzte Antwort
                                  0
                                  • M MCU

                                    @tehmilcho In LUA seems to be

                                    local encodedUrl = url.escape(url)
                                    
                                    T Offline
                                    T Offline
                                    tehMilcho
                                    schrieb am zuletzt editiert von
                                    #17

                                    @mcu said in Simple API Use SOLVED:

                                    local encodedUrl = url.escape(url)

                                    mhh seems like fibaro specail lua?

                                    [24.11.2023] [22:54:25] [ERROR] [SCENE29]: (load):23: attempt to call a nil value (field 'escape')

                                    M 1 Antwort Letzte Antwort
                                    0
                                    • T tehMilcho

                                      @mcu said in Simple API Use SOLVED:

                                      local encodedUrl = url.escape(url)

                                      mhh seems like fibaro specail lua?

                                      [24.11.2023] [22:54:25] [ERROR] [SCENE29]: (load):23: attempt to call a nil value (field 'escape')

                                      M Online
                                      M Online
                                      MCU
                                      schrieb am zuletzt editiert von
                                      #18

                                      @tehmilcho Do you use it so?

                                      url = url.escape(url)
                                      
                                      selfhttp:request(url, {
                                        options={
                                          method = 'GET',
                                          headers = headers,
                                          timeout = 5000
                                        },
                                        success = function(response) 
                                          print(response.status)
                                          print(response.data)
                                        end,
                                        error = function(message)
                                          print("error:", message)
                                        end
                                      })
                                      

                                      NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                                      Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                      T 1 Antwort Letzte Antwort
                                      0
                                      • M MCU

                                        @tehmilcho Do you use it so?

                                        url = url.escape(url)
                                        
                                        selfhttp:request(url, {
                                          options={
                                            method = 'GET',
                                            headers = headers,
                                            timeout = 5000
                                          },
                                          success = function(response) 
                                            print(response.status)
                                            print(response.data)
                                          end,
                                          error = function(message)
                                            print("error:", message)
                                          end
                                        })
                                        
                                        T Offline
                                        T Offline
                                        tehMilcho
                                        schrieb am zuletzt editiert von
                                        #19

                                        @mcu yep this leads to "[24.11.2023] [22:54:25] [ERROR] [SCENE29]: (load):23: attempt to call a nil value (field 'escape')"

                                        M 1 Antwort Letzte Antwort
                                        0
                                        • T tehMilcho

                                          @mcu yep this leads to "[24.11.2023] [22:54:25] [ERROR] [SCENE29]: (load):23: attempt to call a nil value (field 'escape')"

                                          M Online
                                          M Online
                                          MCU
                                          schrieb am zuletzt editiert von
                                          #20

                                          @tehmilcho sagte in Simple API Use SOLVED:

                                          :23: attempt to call a nil value (field 'escape')

                                          Try this

                                          url = url:gsub("([^A-Za-z0-9_])", function(c) return string.format("%%%02X", string.byte(c)) end)
                                          

                                          NUC i7 64GB mit Proxmox ---- Jarvis Infos Aktualisierungen der Doku auf Instagram verfolgen -> mcuiobroker Instagram
                                          Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                          T 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

                                          749

                                          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