Search found 3 matches

by dvrp13
Sat May 20, 2017 4:33 pm
Forum: General Discussion
Topic: HTTP using Ethernet
Replies: 4
Views: 7046

Re: HTTP using Ethernet

Sorry for my late answer.
It looks like the network of my university college is blocking the network traffic from the ESP32.
On that network it is detected as http proxy but all proxy network is blocked.

Would it be possible to bypass this? Maybe by changing the user agent?
by dvrp13
Tue May 16, 2017 9:16 am
Forum: General Discussion
Topic: HTTP using Ethernet
Replies: 4
Views: 7046

Re: HTTP using Ethernet

Thanks! I was able to do a http get request using parts of the http request example. But sometimes it is stuck in the do...while just before the putchar used to print the html code. It prints DO 1 and DO 2 but then it is stuck. do { ESP_LOGI(TAG, "DO 1"); bzero(recv_buf, sizeof(recv_buf)); ESP_LOGI(...
by dvrp13
Mon May 15, 2017 8:06 am
Forum: General Discussion
Topic: HTTP using Ethernet
Replies: 4
Views: 7046

HTTP using Ethernet

Hi everyone


I am trying to send data to a MySQL database using Ethernet on the ESP32 with HTTP Post Requests.
I was able to get an IP address using the Ethernet example but I don't know how to do the HTTP POST using Ethernet.