Hi, i am making my simple program and connect with that program with Blynk Mobile app and it is working fine, when i wants to use API then i am facing problem, can anybody help me out for this
below is my program and i have no fear to get my auth code or wifi SSID / Password as it is just little project to understand
here is my code
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
char auth[]="TEdP-c_VTKBCW8YC91RzOKhJ_7yBJzZW";
char ssid[]="apnaisp.com A 34";
char pass[]="netgear4";
void setup() {
Serial.begin(9600);
pinMode(D8, OUTPUT); // LIGHTS
digitalWrite(D8,LOW); // LIGHTS OFF
Blynk.begin(auth,ssid,pass);
}
// the loop function runs over and over again forever
void loop() {
Blynk.run();
}
the PROBLEM, as i mentioned that blynk app is working perfectly all right to work remotely and my LED is turning off and on so i have no issue with it
the main problem is that when i am using this link
http://blynk-cloud.com/TEdP-c_VTKBCW8YC91RzOKhJ_7yBJzZW/update/D8?value=1
it doesnt work and if use D2 with value=0 than my ESP8266MOD (blue light active)
i want to turn on my LED which is connected with D8 Pin (physically)
i also tried this with IP like “188.166.206.43”
with 8080 port and without but it doesn’t work for me
here in picture, you can see the picture and response “200” mentioned but my LED is no turning on
PLZ PLZ help me in this regards