Is blynk-cloud broken? [SOLVED]

Hello, all my devices today could not connect to blynk-cloud.
I thouth something was with wi-fi connection.
I connected one of my device to computer and started debug.

i’ve checked on library versions 0.5.2 and 0.5.3 - result is the same -no connection.

[18631] Connecting to ZTE-c9a7f2
[23633] Connected to WiFi
[23633] IP: 192.168.1.3
[23634] 
    ___  __          __
   / _ )/ /_ _____  / /__
  / _  / / // / _ \/  '_/
 /____/_/\_, /_//_/_/\_\
        /___/ v0.5.3 on NodeMCU

  Give Blynk a Github star! => https://github.com/blynkkk/blynk-library

[23646] Connecting to blynk-cloud.com:80
[36504] Connecting to blynk-cloud.com:80
[49541] Connecting to blynk-cloud.com:80

my ping output:

C:\Users\Ivan>ping blynk-cloud.com

Обмен пакетами с blynk-cloud.com [139.59.206.133] с 32 байтами данных:
Ответ от 139.59.206.133: число байт=32 время=56мс TTL=55
Ответ от 139.59.206.133: число байт=32 время=55мс TTL=55
Ответ от 139.59.206.133: число байт=32 время=55мс TTL=55
Ответ от 139.59.206.133: число байт=32 время=58мс TTL=55

Статистика Ping для 139.59.206.133:
    Пакетов: отправлено = 4, получено = 4, потеряно = 0
    (0% потерь)
Приблизительное время приема-передачи в мс:
    Минимальное = 55мсек, Максимальное = 58 мсек, Среднее = 56 мсек

what is wrong?

is it any resource to check blynk-cloud state ?

https://www.blynk.cc/status

Perhaps your region is part of the 0.84% ?

Something very strange is happening.

I’ve used simple clean example for NodeMCU.

  1. not working source:
void setup()
{
  // Debug console
  Serial.begin(115200);
  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}

result:

[18703] Connecting to ZTE-c9a7f2
[22206] Connected to WiFi
[22206] IP: 192.168.1.3
[22206] 
    ___  __          __
   / _ )/ /_ _____  / /__
  / _  / / // / _ \/  '_/
 /____/_/\_, /_//_/_/\_\
        /___/ v0.5.2 on NodeMCU

[22212] Connecting to blynk-cloud.com:80
[34708] Connecting to blynk-cloud.com:80
[47619] Connecting to blynk-cloud.com:80
[60709] Connecting to blynk-cloud.com:80
[73778] Connecting to blynk-cloud.com:80
[86881] Connecting to blynk-cloud.com:80
[99904] Connecting to blynk-cloud.com:80
  1. working source :
void setup()
{
  Serial.begin(115200);
  Serial.println();

  WiFi.begin(ssid, pass);

  Serial.print("Connecting");
  while (WiFi.status() != WL_CONNECTED)
  {
    delay(500);
    Serial.print(".");
  }
  Serial.println();

  Serial.print("Connected, IP address: ");
  Serial.println(WiFi.localIP());
 

  Blynk.config(auth, "blynk-cloud.com", 80);
}

void loop()
{
  Blynk.run();
}

result:

Connecting.............
Connected, IP address: 192.168.1.3
[25175] 
    ___  __          __
   / _ )/ /_ _____  / /__
  / _  / / // / _ \/  '_/
 /____/_/\_, /_//_/_/\_\
        /___/ v0.5.2 on NodeMCU

[25180] Connecting to blynk-cloud.com:80
[32590] Ready (ping: 2ms).


Can somebody explain what has changed ?? and why the first variant suddenly became not working??

Any reason for the old Blynk library?

some of my devices are not easy reachable for upgrade firmware. okey i will continue research and post results here.

Hey I have noticed a difference in connecting between port 80 and 8080 on blynk-cloud, maybe try that on your testing?
P

Seems something was messed with my wifi router (but i didn’t make any changes in the config). I have reset it to default state and reconfigured wifi with the same credentials. And then everything worked as expected. I don’t know what was the reason.

Solved