I have tried to call Arduino Cloud from ESP8266 (programmed via Arduino core for ESP8266) and it worked just fine
The only differences from provided example are in included libraries and type of WiFi client:
// Include libraries
#include <ESP8266WiFi.h>
#include <WiFiClientSecure.h>
#include <MQTTClient.h>
...
// Change this from original WiFiSSLClient
WiFiClientSecure net; // SSL client to use for MQTT connection
...
// rest is same as example
Nice work with Arduino Cloud.
I'm looking forward to release with more features.
Hi ah01. Great that your got the ESP8266 to work with Arduino Cloud.
Could you please include a full listing the working code and indicate more details on exactly what was changed in the example code and what libraries your excluded from the sample code and which new libraries you added.