In this tutorial we will check how to send a HTTP POST request using the UART OBLOQ. Introduction In this tutorial we will check how to send a HTTP POST request using the UART OBLOQ. For a tutorial on how to send a HTTP GET request, please check here. We are going to send …
UART OBLOQ: Sending HTTP GET request
In this tutorial, we will check how to send a HTTP GET request from the UART OBLOQ. Introduction In this tutorial, we will check how to send a HTTP GET request from the UART OBLOQ. As a destination for our request, we will use a fake online REST API that is very useful for testing …
ESP32: Getting started with the aREST library
The objective of this post is to explain how to get started with the aREST library running on the Arduino core, on the ESP32. The tests were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain how to get started with the aREST library running on the …
Continue reading "ESP32: Getting started with the aREST library"
ESP32 / ESP8266 MicroPython: HTTP POST Requests
The objective of this post is to explain how to perform HTTP POST requests using MicroPython and the urequests library. This was tested on both the ESP32 and the ESP8266. Introduction The objective of this post is to explain how to perform HTTP POST requests using MicroPython and the urequests library. This was tested on …
Continue reading "ESP32 / ESP8266 MicroPython: HTTP POST Requests"
ESP8266: Adding Swagger UI to REST API
The objective of this post is to explain how to add a Swagger UI to a ESP8266 REST API. Introduction The objective of this post is to explain how to add a Swagger UI to a ESP8266 API. Explaining what in detail what is Swagger is outside the scope of this post. As a quick explanation, …
Python: Parsing JSON
The objective of this post is to explain how to parse the response of a HTTP request which is in JSON format. Introduction The objective of this post is to explain how to parse the response of a HTTP GET request which is in JSON format. We will use the Requests library to perform the request …