arduino-libraries / ArduinoHttpClient

Arduino HTTP Client library
282 stars 170 forks source link

Does the Library support streaming #113

Open Samorange1 opened 2 years ago

Samorange1 commented 2 years ago

So I am trying to stream data from Firebase. I am able to get the data using GET and for streaming purposes I am sending the header "Accept:text/event-stream" I am also not closing the connection. I am reading the response while the client.available() returns true. However, the response code comes to be 200 and Response is the data and then it does nothing.

Ideally it should give a 307 response / start streaming the data

Can someone help me with it?