Blynk server on google cloud unable to connect with device

I have installed blynk cloud on google cloud,
I am able to open the admin page with the ip:9443/admin,
At the same time I am able to connect the server to my mobile and I am able to create the project.
But I am not able to connect my hardware to blynk server on my google cloud. Below I have provided the code what I have used and screenshot of the serial monitor output.

#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

char auth[] = “Ywd90VpvhA_IxcL8u2iYKhhaMzQhAdzP”;

char ssid[] = “Surya_Raji”;
char pass[] = “9908910330”;

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

Blynk.begin(auth, ssid, pass, IPAddress(10,128,0,3),9443);
}

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

@dsuryavidyadhar please edit your post, using the pencil icon at the bottom, and add triple backticks at the beginning and end of your code so that it displays correctly.
Triple backticks look like this:
```

Pete.

Same problem is facing by me… brother if you find and solutions please let me know as well… shahhemal8055@gmail.com
Thank you in advance :slight_smile:

@Hemalshah8055 I’d suggest that you post details of your setup, code, and serial reesponse.

I have many questions and comments on @dsuryavidyadhar’s code., but I never comment on the code until they have edited it to fix the formatting. As the formatting was never fixed, I never gave any feedback on the issues I see.

Pete.

1 Like