Skip to content

Commit ee7a0f4

Browse files
authored
Update README.md
1 parent 4a186de commit ee7a0f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fetch for Arduino
2-
fetch is a high level HTTP Request Library that gives you a javascript fetch like API.
2+
fetch is a high level HTTP Request Library that gives you a javascript fetch like API. It also supports making asynchronous/non-blocking requests, check out [this example](https://github.com/instanceofMA/arduino-fetch/blob/main/examples/esp8266/async/get/get.ino) and [others](https://github.com/instanceofMA/arduino-fetch/blob/main/examples).
33

44
```js
55
ResponseOptions options;
@@ -31,6 +31,7 @@ Response response = fetch("https://api.grandeur.tech/auth/login/?apiKey=grandeur
3131

3232
```cpp
3333
Response response = fetch(const char* url, RequestOptions options);
34+
FetchClient client = fetch(const char* url, RequestOptions options, OnResponseCallback callback);
3435
```
3536

3637
# Request Options

0 commit comments

Comments
 (0)