1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-04-21 08:25:54 +03:00
ArduinoHttpClient/README.md
per1234 d07192a7f7 Add "smoke test" examples compilation CI workflow
On every push or pull request that affects library source or example files, and periodically, compile all example
sketches for the specified boards.
2021-04-11 23:48:52 -07:00

1.8 KiB

ArduinoHttpClient

Check Arduino status Compile Examples status Spell Check status

ArduinoHttpClient is a library to make it easier to interact with web servers from Arduino.

Derived from Adrian McEwen's HttpClient library

Dependencies

Usage

In normal usage, handles the outgoing request and Host header. The returned status code is parsed for you, as is the Content-Length header (if present).

Because it expects an object of type Client, you can use it with any of the networking classes that derive from that. Which means it will work with WiFiClient, EthernetClient and GSMClient.

See the examples for more detail on how the library is used.