Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • 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

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. English
  3. Cloud services
  4. Simple_api adapter syntax problem with esp32

NEWS

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    8
    1
    450

  • Verwendung von KI bitte immer deutlich kennzeichnen
    HomoranH
    Homoran
    10
    1
    376

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    968

Simple_api adapter syntax problem with esp32

Scheduled Pinned Locked Moved Cloud services
2 Posts 1 Posters 723 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • kristfrizhK Offline
    kristfrizhK Offline
    kristfrizh
    wrote on last edited by kristfrizh
    #1

    Hii
    I have a project to send data using MQTT and restfull api using simple_api adapter.
    I have succed to send data using post via web browser

    simple api wiki

    Right now, i want to use esp32 with post and get http to sending and receive data.
    I want post the data the same like this in web browser via esp32

    192.168.0.120:8087/set/try_simple_api2?value=2
    

    I have build some code like this but still sent got nothing.

    anyone can help me?
    thank you very much regards

    #include <WiFi.h>
    #include <HTTPClient.h>
    
    const char* ssid = "asdasd";
    const char* password = "asdasd";
    
    const char* serverName = "http://192.168.0.120:8087/";
    unsigned long lastTime = 0;
    
    unsigned long timerDelay = 2000;
    
    void setup() {
      Serial.begin(115200);
    
      WiFi.begin(ssid, password);
      Serial.println("Connecting");
      while(WiFi.status() != WL_CONNECTED) {
        delay(500);
        Serial.print(".");
      }
      Serial.println("");
      Serial.print("Connected to WiFi network with IP Address: ");
      Serial.println(WiFi.localIP());
     
      Serial.println("Timer set to 5 seconds (timerDelay variable), it will take 5 seconds before publishing the first reading.");
    }
    
    void loop() {
    
      if ((millis() - lastTime) > timerDelay) {
    
        if(WiFi.status()== WL_CONNECTED){
          HTTPClient http;
    
          http.begin(serverName);
    
       http.addHeader("Content-Type", "text/plain");
          int httpResponseCode = http.POST("/set/try_simple_api2?value=7");
         
          Serial.print("HTTP Response code: ");
          Serial.println(httpResponseCode);
            
          // Free resources
          http.end();
        }
        else {
          Serial.println("WiFi Disconnected");
        }
        lastTime = millis();
      }
    }
    
    kristfrizhK 1 Reply Last reply
    0
    • kristfrizhK kristfrizh

      Hii
      I have a project to send data using MQTT and restfull api using simple_api adapter.
      I have succed to send data using post via web browser

      simple api wiki

      Right now, i want to use esp32 with post and get http to sending and receive data.
      I want post the data the same like this in web browser via esp32

      192.168.0.120:8087/set/try_simple_api2?value=2
      

      I have build some code like this but still sent got nothing.

      anyone can help me?
      thank you very much regards

      #include <WiFi.h>
      #include <HTTPClient.h>
      
      const char* ssid = "asdasd";
      const char* password = "asdasd";
      
      const char* serverName = "http://192.168.0.120:8087/";
      unsigned long lastTime = 0;
      
      unsigned long timerDelay = 2000;
      
      void setup() {
        Serial.begin(115200);
      
        WiFi.begin(ssid, password);
        Serial.println("Connecting");
        while(WiFi.status() != WL_CONNECTED) {
          delay(500);
          Serial.print(".");
        }
        Serial.println("");
        Serial.print("Connected to WiFi network with IP Address: ");
        Serial.println(WiFi.localIP());
       
        Serial.println("Timer set to 5 seconds (timerDelay variable), it will take 5 seconds before publishing the first reading.");
      }
      
      void loop() {
      
        if ((millis() - lastTime) > timerDelay) {
      
          if(WiFi.status()== WL_CONNECTED){
            HTTPClient http;
      
            http.begin(serverName);
      
         http.addHeader("Content-Type", "text/plain");
            int httpResponseCode = http.POST("/set/try_simple_api2?value=7");
           
            Serial.print("HTTP Response code: ");
            Serial.println(httpResponseCode);
              
            // Free resources
            http.end();
          }
          else {
            Serial.println("WiFi Disconnected");
          }
          lastTime = millis();
        }
      }
      
      kristfrizhK Offline
      kristfrizhK Offline
      kristfrizh
      wrote on last edited by
      #2

      @kristfrizh Hii
      i just figured it out
      we don't use post at all with those syntax
      thank you

      1 Reply Last reply
      0

      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

      With your input, this post could be even better 💗

      Register Login
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      Support us

      ioBroker
      Community Adapters
      Donate

      649

      Online

      32.8k

      Users

      82.8k

      Topics

      1.3m

      Posts
      Community
      Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
      ioBroker Community 2014-2025
      logo
      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Home
      • Recent
      • Tags
      • Unread 0
      • Categories
      • Unreplied
      • Popular
      • GitHub
      • Docu
      • Hilfe