Search found 2 matches

by AdamTracz
Tue Dec 05, 2023 8:44 am
Forum: General Discussion
Topic: How to save response data from server after HTTPS request
Replies: 2
Views: 2472

Re: How to save response data from server after HTTPS request

Hi, thank you for answer.

Yes, I have commented this code snippet.

Now I paste all functions to main.c and i try it but i have this same problem - ESP32 reboot.

I don't know where is a problem, maybe with memory?

Adam
by AdamTracz
Mon Dec 04, 2023 11:22 pm
Forum: General Discussion
Topic: How to save response data from server after HTTPS request
Replies: 2
Views: 2472

How to save response data from server after HTTPS request

Hi, I need a help. In my project I send data to server by HTTP POST request and next i get response from server. I would like to save received data and use it in main function. I use example of http chunked client which I find on github: #include <stdio.h> #include <string.h> #include "connect.h" #i...