#include <WiFi.h>
#include <HTTPClient.h>
  
const char* ssid = "Wokwi-GUEST";
const char* password = "";
  
void setup() {
  
  Serial.begin(115200);
  delay(1000);
  WiFi.begin(ssid, password);
  
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi..");
  }
  
  Serial.println("Connected to the WiFi network");
  
}
  
void loop() {
  
  if ((WiFi.status() == WL_CONNECTED)) { //Check the current connection status
  
    HTTPClient http;
  
   // http.begin("https://blynk.cloud/external/api/get?token=bqtqGLkqOuV-3XQUHBfHLGTVIbMZ91Sm&v1"); //Specify the URL
    //http.setAuthorization("Basic token");
   http.setAuthorization("Bearer token");

    int httpCode = http.GET();                                        //Make the request
  
    if (httpCode > 0) { //Check for the returning code
  
        String payload = http.getString();
        Serial.println(httpCode);
        Serial.println(payload);
      }
  
    else {
      Serial.println("Error on HTTP request");
    }
  
    http.end(); //Free the resources
  }
  
  delay(1000);
  
}