Johan Euphrosine

Results 579 comments of Johan Euphrosine

Can you confirm that was fixed with #368 ?

@Ahmed-Talaat I'm experimenting in that branch: https://github.com/proppy/firebase-arduino/tree/esp32 Got it to compile, but still have TLS issue when making the actual request.

@danielcrowley sure feel free to try out the branch, and let me know if you also get a TLS error ;)

@bestpika yes, you need to checkout https://github.com/arduino-libraries/ArduinoHttpClient in the `third-party` directory.

That should be easier to implement now that they added an HTTPClient w/ SLL in the ESP32 arduino core that is supposed to match the API for the ESP8266: https://github.com/espressif/arduino-esp32/commits/master/libraries/HTTPClient

@blotfi I think my branch was using a patched version of ArduinoHttpClient: ``` diff --git a/src/HttpClient.cpp b/src/HttpClient.cpp index b46f628..4fb7694 100644 --- a/src/HttpClient.cpp +++ b/src/HttpClient.cpp @@ -28,6 +28,17 @@ HttpClient::HttpClient(Client& aClient,...

@blotfi you need to make the same modification that I linked, but even after than there is still an SSL error we need to solve. So it's not working yet.

One good way to support the ESP32 would be to standardize on the `ArduinoHttpClient` or the arduino `Client` interface https://www.arduino.cc/en/Reference/ClientConstructor interface, instead using of using the `HttpClient` in the esp8266...

@Curclamas I'd welcome some more testing on https://github.com/FirebaseExtended/firebase-arduino/pull/353 if you want to give it a try.

Sorry for the late follow-up It seems that the REST API only support OAuth2.0 based auth, see https://firebase.google.com/docs/reference/rest/database/user-auth In order to support it in the library we would need to:...