Skip to main content

Questions tagged [http]

Hypertext Transfer Protocol (HTTP) is an application level network protocol that is used for the transfer of content on the World Wide Web.

Filter by
Sorted by
Tagged with
1 vote
1 answer
328 views

I am working on a project where I have set up an Arduino UNO R4 Wi-Fi as a web server. However, I would like to secure the communication by using HTTPS instead of HTTP for accessing the Arduino web ...
Aashish Dhakal's user avatar
-1 votes
1 answer
77 views

I am a newbie in Arduino and IoT and using M5StickC Plus2 on Arduino IDE. I am trying to push data to Prometheus pushgateway, but only get 400 response code. Pushgateway only accepts binary data. ...
walves's user avatar
  • 97
0 votes
1 answer
415 views

I've just spent a few hours on this and I am starting to go crazy. I have code to do a firmware update over HTTP working on several ESP32s. I'm trying to adapt that code to work on an ESP8266, but can'...
Blaine's user avatar
  • 101
1 vote
0 answers
81 views

I have the code below and it doesn't work with my URL. I receive a 715(Handshake Failed) This code below works normally, but with my API it doesn't work. I'm using a A7670SA with Arduino Mega 2560. ...
Ramon's user avatar
  • 11
1 vote
0 answers
622 views

I have a program that only do get and post to a controller via an ethernet port. My problem is that after a certain amount of loop in the program, i got this error: Guru Meditation Error: Core 1 ...
Martin Chicoine's user avatar
1 vote
1 answer
1k views

I have been having trouble trying to send a small txt file to my server using the following function with TinyGSM. I know I am connected to the internet and reaching the web server, however, I keep ...
NRav's user avatar
  • 243
2 votes
0 answers
817 views

I need to receive data from sensors on the websites located on my PC (hosted with XAMPP). When I was first using AsyncWebServer library and hosting them on ESP32 everything was working with a ...
CaramelTr's user avatar
1 vote
1 answer
422 views

I'm measuring accelerations at "high frequency" (4kHz) from an accelerometer (ADXL355/ADXL357) to an esp32. It's crucial that no sample is lost while performing a measure which last say 2 ...
AlekseyFedorovich's user avatar
2 votes
0 answers
207 views

I have a program running on an esp8266 that attempts to fetch json data from an HTTPS endpoint that is hosted on aws amplify (data comes from a next.js app). I can retrieve the data correctly when I ...
seddouguim's user avatar
1 vote
0 answers
554 views

in my recent project, I'm trying to detect motion and capture an image using the esp32 cam module and send it to the server via HTTP. Once the image is captured it is converted to a base64 string and ...
Dinesh 255's user avatar
1 vote
2 answers
827 views

I've set up an esp32 board (wemos d1 r32) to send a request to a server hosted on my local network. If I set up a very basic go server, the board handles the response fine (200 with the appropriate ...
Batzz's user avatar
  • 121
0 votes
1 answer
3k views

I read this issue. But I didn't understand it. Like the author I don't have an SSL certificate and I don't want to have one (because if I had one I could live with HTTPS!). I just want to process any ...
Mark's user avatar
  • 393
1 vote
0 answers
635 views

I have a ESP-S3 board and am trying to get JSON data from our server. I am using the following code (see below) as a basis for mine. This code works. If I change http://jsonplaceholder.typicode.com/...
BAW's user avatar
  • 11
0 votes
0 answers
571 views

I have data on firebase rtdb, which i want to listen in my nodemcu. I know there are libraries available like this one which provides listeners, but i want to do it using REST API streaming as ...
aryan's user avatar
  • 11
-1 votes
1 answer
2k views

I've been looking around for a solution, but couldn't manage to find one. I'm looking to send a post request from an ESP8266 on a local API. Here is my code : #include <ESP8266WiFi.h> #include &...
Nicoji_'s user avatar
-2 votes
1 answer
209 views

I'm trying hit some endpoints on the 8Base API with the Arduino Uno Wifi Rev2. I was able to get this API call to work with Postman, but I've had no luck once I convert it to my Arduino code. In ...
jobrien9's user avatar
-1 votes
1 answer
2k views

I want to communicate two (2) ESP32's via Json commands using ESPAsyncWeb.h. The master should have specific operations to execute and respond to the client, and the client should be able to send ...
Ed Zamper's user avatar
1 vote
0 answers
1k views

I am using ESP32 and SIM800L for my project. The SIM800L does support SSL, TLS 1.0, and TLS 1.1. But web servers nowadays usually support only TLS 1.2 and 1.3. I heard, that the ESP32 HTTPS client can ...
rktech's user avatar
  • 23
1 vote
1 answer
367 views

This is my final year project and for some reason, the max30100 sensor defaults to static values once the HTTP post request has been performed. #include <ESP8266WiFi.h> #include <...
Roschlynn Dsouza's user avatar
0 votes
1 answer
452 views

I need to use some API in my project. So I'm gonna use such libraries as listed in the title? What GSM/SIM module do I need for this purpose? I've checked 800L and similar - it only can use plain http,...
picKit's user avatar
  • 109
-1 votes
1 answer
3k views

I am trying to figure out how to get requests (or whatever they are called) to display in the serial monitor, yet not change the HTML page bodies. The user selects their choices in the submenu (...
Adam's user avatar
  • 47
2 votes
1 answer
3k views

I made this minimal example in order to figure out how to get requests (or whatever they are called) to display in the serial monitor. However, none of the query parameters (in the URL) can be seen in ...
Adam's user avatar
  • 47
2 votes
0 answers
678 views

I started to work with HTTPClient and the WiFly library to connect to an SSID and then send POST data to a server. When I was sending the data to my localhost, it was working on localhost, but when ...
Chris Fodor's user avatar
1 vote
0 answers
555 views

Scenario: Existing project: read soft serial then do http post New project: MQTT player from other (MrDIY / MrDIY Audio Notifier · GitLab) Objective: Combine together (Result: successful ) Issue: When ...
Rex's user avatar
  • 11
1 vote
1 answer
261 views

I have an esp32 development board that I am trying to use to get Bitcoin price data using the Coinbase api. On the Coinbase developers website, they give this example Curl command to get Bitcoin price ...
Nick's user avatar
  • 113
1 vote
1 answer
591 views

I'm trying to make a simple GET request to a server (which has a static IP but does not have a name). I'm using EtherCard library and a cheap ENC28J60 Ethernet Module. The basic configurations are OK (...
user2959923's user avatar
1 vote
0 answers
362 views

I've tried using several libraries such as TinyGSM, SoftwareSerial, AT commands but I'm guessing the problem to be with my GET request url is https://script.google.com/macros/s/GAS_ID/exec?tag=1234&...
Anonymus's user avatar
1 vote
1 answer
1k views

I'm trying to port my esp32 program to esp8266, and i've come across a problem where i can't get a response from a HTTPS GET request on esp8266, but on my esp32 the same code works fine. The function ...
Boyfinn's user avatar
  • 245
0 votes
1 answer
2k views

I'm reading RFID cards' UID with an ESP8266 and trying to send that information to my web server hosted on a Raspberry Pi. I'm currently storing the UID in an int array, but the http.POST(); function ...
leventecsoba's user avatar
1 vote
0 answers
1k views

I want to send HTTP post requests to a server in JSON Format using a SIM900 module. But the code is not posting the data and have an error.Can someone help me to solved the error 1,603,0 since I ...
irsyad zulkeflee's user avatar
0 votes
2 answers
2k views

I want to get some JSON data from a HTTPS secured Webserver using a ESP8266. For some reason I'm getting an empty response, I believe there's an error parsing the GET request. In Chrome I get the JSON ...
Christopher's user avatar
1 vote
0 answers
309 views

I am working on a project where the ESP 8266 sends a very long string about 3000 chas over http as client. Likewise sensor data are determined. The loop repeats itself every 250ms. Now I noticed that ...
TrompetenTom's user avatar
1 vote
1 answer
4k views

I'm using a SIM A9G. When I send HTTP GET command from the serial monitor, it responds. But, it doesn't work when included in the code. #include <SoftwareSerial.h> SoftwareSerial myserial(8, 7);...
Enisco's user avatar
  • 19
1 vote
0 answers
1k views

update I have updated the code(second code segment) so that the null character is inserted into the array which solves the problem of writing past the end of the array. in order to stop the program ...
user2105725's user avatar
0 votes
1 answer
455 views

Ive been trying to get POST working on my ESP8266. I followed this tutorial https://techtutorialsx.com/2016/07/21/esp8266-post-requests/ which works, but once i change the request URL to anything else ...
Slurba's user avatar
  • 19
-3 votes
1 answer
141 views

I set my code to if it executes HTTP.POST, the count will reset / back to zero, but I noticed that even it returns other http code than 201 (-1 or 500), the count still resets. How to put a condition ...
Giddsec's user avatar
  • 17
0 votes
1 answer
80 views

I have a project that records interrupts from a reed switch to nodemcu. It records like this: 0.3,0.6,0.9,1.2 Then what I want to happen is to go back to zero when it successfully HTTP.POST to a ...
Giddsec's user avatar
  • 17
0 votes
1 answer
1k views

I'm trying to do an async webserver with access point using an ESP32. It's a little bit of a mix between This tutorial for AP and async and this tutorial since it's also with an async webserver and it ...
Xenoshell's user avatar
-1 votes
1 answer
133 views

I'm trying to POST the data of total, but it returns 400. but when I try a sample data like int httpResponseCode = http.POST("{\"amount\":\"total\"}"); (400) into int ...
Giddsec's user avatar
  • 17
1 vote
0 answers
83 views

I am trying to toggle on/off between two separate HTTP request. One submit button to turn it on, and another separate submit button to turn it off. I expect the device to launch in the off/low 0V ...
brad's user avatar
  • 201
1 vote
1 answer
3k views

I am trying to make HTTPS GET/POST requests to the following server using AT commands. AT+CIPSTART="TCP","54.166.71.140 ",443 I get errors when i use port 443 but on port 80 the ...
omkar joglekar's user avatar
2 votes
0 answers
1k views

I am trying to send a simple GET/POST request to a dummy end point on https://requestbin.com/. I am using an ESP8266 module. I am using the arduino serial monitor to send these AT commands. I connect ...
omkar joglekar's user avatar
3 votes
1 answer
3k views

I want to make an Http Post request with Bearer Authentication to my api using my Arduino Mkr Wifi 1010, but I couldn't find the appropriate library to do something like this (code generated with one ...
Riccardo's user avatar
1 vote
3 answers
186 views

I am working with some sensors and sending data to a public web server via http, I was thinking this server can be possibly used by more people to send their data and server displays a chart. I was ...
adrianTNT's user avatar
  • 252
0 votes
1 answer
817 views

I'm fairly new to Arduino. I'm working on a project where I'm making HTTP requests using a python code and this lets me read and write to a JSON file on my desktop. I have an Arduino with sensors that ...
Mike's user avatar
  • 21
3 votes
0 answers
585 views

I have an ESP32 application that uses a web server as a user interface. For auditing and debugging during development I use Serial; however, that is impractical in the installed system. So, I decided ...
Eric Vortriede's user avatar
1 vote
1 answer
97 views

I have wrote a code that communicate with my website to retrieve data to power on or off a 5V relay. I'm running the code every second to make sure it is real time. Is there more efficient way to tell ...
motion channel's user avatar
1 vote
1 answer
298 views

I'm trying to send JSON, but i'm not able to set Content-Type header. Other commands are successful: [23:49:41:856] AT+SAPBR=3,1,"CONTYPE","GPRS"␍␊ [23:49:41:899] ␍␊ [23:49:41:899] ...
Marat Gareev's user avatar
0 votes
1 answer
3k views

i am using esp32 as a client and using following example. So here i am getting header response only that is 200. I am not getting any response after that. here is the example #include <WiFi.h> #...
dev_eng's user avatar
2 votes
5 answers
4k views

4th Update: I bought an ESP32 (the successor to ESP8266) and am getting the same problem. I used the same code except used the Wifi.h library instead, also removed the ESP8266WiFiGratuitous.h code. I ...
David Klempfner's user avatar