lasselukkari / aWOT

Arduino web server library.
MIT License
283 stars 41 forks source link

error: 'class Response' has no member named 'success' #29

Closed alessio-zamparelli closed 5 years ago

alessio-zamparelli commented 5 years ago

Hi, when I try to add the success response, it keep saying that class response has no member named succes.... This piece of code: void statusCmd(Request &req, Response &res) { res.success("application/json"); String currentStatus; ..........

Any idea? Arduino ide for esp8266

lasselukkari commented 5 years ago

Hello!

The router examples in the readme are outdated. Thanks for letting me know. The success function was part of the pre 1.0 version API.

The default response code is 200 (success) so you don't need to set it if you don't want to use something else. To set the content type to json call

res.set("Content-Type", "application/json")

I will update the examples in the readme. The main documentations is available at awot.com

alessio-zamparelli commented 5 years ago

Thanks 🙏

Il giorno 18 giu 2019, alle ore 10:27, Lasse Lukkari notifications@github.com ha scritto:

Closed #29 via #30.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.