Nodemcu is connected to my wifi but Blynk is still offline

I have Generic Esp8266 board. I am trying to make a simple led on/off system on Blynk with this board. I have tried many methods mentioned here but still I am suffering this trouble.


**My serial monitor output : **
ip:192.168.43.183,mask:255.255.255.0,gw:192.168.43.37
wifi evt: 3
[hostByName] request IP for: blynk-cloud.com
[hostByName] Host: blynk-cloud.Com IP: 188.166.206.43
pm open,type:2 0
bcn_timout,ap_probe_send_start

Please help me.

Blynk legacy or IOT ?

Blynk Legacy.

When you post code to the forum it needs to be pasted as text, with triple backticks at the beginning and end.
Triple backticks look like this:
```

Posting screenshots of your code does not work for us.

Also, when you post your serial output you should also use triple backticks.

I would suggest that that you add:

#define BLYNK_PRINT Serial

at the beginning of your sketch, and compile it with debugging turned off in your IDE options.

Is there a reason why you are doing this:

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

rather than this?:

Blynk.begin(auth, ssid, pass);

Pete.

Library version ???

This is done. Thank you for your suggestions.