Connecting to blynk.cloud:80 login timeout

Hi everyone. In my esp8266 project I am getting this login timeout error while connecting to blynk.cloud:80. Even after using example demo code I’m not able to connect to blynk cloud server.

This example demo code:
/*************************************************************

  This is a simple demo of sending and receiving some data.
  Be sure to check out other examples!
 *************************************************************/

/* Fill-in information from Blynk Device Info here */
#define BLYNK_TEMPLATE_ID           "________"
#define BLYNK_TEMPLATE_NAME         "_________"
#define BLYNK_AUTH_TOKEN            "_________"

/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial


#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "___";
char pass[] = "___";

BlynkTimer timer;

// This function is called every time the Virtual Pin 0 state changes
BLYNK_WRITE(V0)
{
  // Set incoming value from pin V0 to a variable
  int value = param.asInt();

  // Update state
  Blynk.virtualWrite(V1, value);
}

// This function is called every time the device is connected to the Blynk.Cloud
BLYNK_CONNECTED()
{
  // Change Web Link Button message to "Congratulations!"
  Blynk.setProperty(V3, "offImageUrl", "https://static-image.nyc3.cdn.digitaloceanspaces.com/general/fte/congratulations.png");
  Blynk.setProperty(V3, "onImageUrl",  "https://static-image.nyc3.cdn.digitaloceanspaces.com/general/fte/congratulations_pressed.png");
 Blynk.setProperty(V3, "url", "https://docs.blynk.io/en/getting-started/what-do-i-need-to-blynk/how-quickstart-device-was-made");
}

// This function sends Arduino's uptime every second to Virtual Pin 2.
void myTimerEvent()
{
  // You can send any value at any time.
  // Please don't send more that 10 values per second.
  Blynk.virtualWrite(V2, millis() / 1000);
}

void setup()
{
  // Debug console
  Serial.begin(115200);

  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
  // You can also specify server:
  //Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass, "blynk.cloud", 80);
  //Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass, IPAddress(192,168,1,100), 8080);

  // Setup a function to be called every second
  timer.setInterval(1000L, myTimerEvent);
}

void loop()
{
  Blynk.run();
  timer.run();
  // You can inject your own code or combine it with other sketches.
  // Check other examples on how to communicate with Blynk. Remember
  // to avoid delay() function!
}

Serial Monitor result:

[4402] Connected to WiFi
[4402] IP: 192.168.137.230
[4402] 
       ___  __          __
         / _ )/ /_ _____  / /__
          / _  / / // / _ \/  '_/
         /____/_/\_, /_//_/_/\_\
                /___/ v1.2.0 on ESP8266

         #StandWithUkraine     https://bit.ly/swua


    [4412] Connecting to blynk.cloud:80
    [10435] Login timeout
    [10436] Connecting to blynk.cloud:80
    [16441] Login timeout
    [16442] Connecting to blynk.cloud:80
    [22412] Connecting to blynk.cloud:80
    [28418] Login timeout
    [28419] Connecting to blynk.cloud:80
    [34424] Login timeout
    [34425] Connecting to blynk.cloud:80
    [40412] Connecting to blynk.cloud:80
    [46420] Login timeout
    [46421] Connecting to blynk.cloud:80
    [52442] Login timeout
    [52443] Connecting to blynk.cloud:80
    [58412] Connecting to blynk.cloud:80
    [64422] Login timeout`

I have also seen previous related FAQS and tried some solution of it but it is not working. This same login timeout error I’m getting in my ESP8266 project as well. I have not included template information, authid in this topic.

Hello, @yash6634 Please edit the your post. You can read - Recommendations for creating a new topic in Forum. Your code is not readable

Now it should be readable.

Are you trying to connect via a regular domestic router connected to the internet with copper or fibre?

Have you tried rebooting your router?
Have you tried connecting to a phone hotspot instead?

Pete.

Yes it is working with phone hotspot.
Thank you.