Problem with cloud

Dear friends

i have problem to get connected to bylnk cloud as shown below in the pictures
my code is

#define BLYNK_PRINT Serial
#define BLYNK_DEBUG


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

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "986109f7771b4c3599ce570e67cb94e9";

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

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

  Blynk.begin(auth, ssid, pass);
}

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

as you can see i have the same token in both my code and my app

thanks alot

dears

i solved the problem by repalce the line of code below

Blynk.begin(auth, ssid, pass);

with this line of code

Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 8442);

You need to use 8080

1 Like

its work fine with 8442 port

Your ISP is blocking/redirecting the port 80. You should consult with them.

1 Like