hlo my arduino uno wifi r3 not working its connect wifi but it not connect to the cloud TINGER IO auth fail
#define DISABLE_TLS
#define USERNAME “indraReddy123”
#define DEVICE_ID “Esp8233node”
#define DEVICE_CREDENTIAL “4IpdWHNFp$D!qeXT”
#define SSID “INDRA_REDDY 1660”
#define SSID_PASSWORD “34237R:m”
.
.
.
#define THINGER_SERIAL_DEBUG
#include <ThingerESP8266.h>
#include “arduino_secrets.h”
ThingerESP8266 thing(USERNAME, DEVICE_ID, DEVICE_CREDENTIAL);
void setup() {
// open serial for monitoring
Serial.begin(115200);
// set builtin led as output
pinMode(LED_BUILTIN, OUTPUT);
// add WiFi credentials
thing.add_wifi(SSID, SSID_PASSWORD);
// digital pin control example (i.e. turning on/off a light, a relay, configuring a parameter, etc)
thing[“led”] << digitalPin(LED_BUILTIN);
// resource output example (i.e. reading a sensor value)
thing[“millis”] >> outputValue(millis());
}
void loop() {
thing.handle();
}
BOARD :- AURDUINO WIFI UNO R3
ERROR : - AUTH FAIL
NTP_SYN] Current time (UTC): Sat Apr 22 06:37:30 2023
[_SOCKET] Connected!
[THINGER] Authenticating. User: indraReddy123 Device: Esp8233node
[THINGER] Writing bytes: 53 [OK]
[THINGER] Auth Failed! Check username, device id, or device credentials.
[_SOCKET] Is now closed!
[_SOCKET] Connecting to iot thinger.io:25202…
[_SOCKET] Using secure TLS/SSL connection: yes
[NTP_SYN] Current time (UTC): Sat Apr 22 06:37:44 2023
[_SOCKET] Connected!
[THINGER] Authenticating. User: indraReddy123 Device: Esp8233node
[THINGER] Writing bytes: 53 [OK]
[THINGER] Auth Failed! Check username, device id, or device credentials.
[_SOCKET] Is now closed!
[_SOCKET] Connecting to iot thinger.io:25202…
[_SOCKET] Using secure TLS/SSL connection: yes
[NTP_SYN] Current time (UTC): Sat Apr 22 06:38:02 2023
PLS CAN ANY ONE HELP OUT OF THESE