本项止转自github官方arduino-esp32 传在这里仅为阅读源码方便
projectuser
2019-07-05 50148ccffe21ff54262064ec9f2245900eaf18aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
 * Authorization.ino
 *
 *  Created on: 09.12.2015
 *
 */
 
#include <Arduino.h>
 
#include <WiFi.h>
#include <WiFiMulti.h>
 
#include <HTTPClient.h>
 
#define USE_SERIAL Serial
 
WiFiMulti wifiMulti;
 
void setup() {
 
    USE_SERIAL.begin(115200);
 
    USE_SERIAL.println();
    USE_SERIAL.println();
    USE_SERIAL.println();
 
    for(uint8_t t = 4; t > 0; t--) {
        USE_SERIAL.printf("[SETUP] WAIT %d...\n", t);
        USE_SERIAL.flush();
        delay(1000);
    }
 
    wifiMulti.addAP("SSID", "PASSWORD");
 
}
 
void loop() {
    // wait for WiFi connection
    if((wifiMulti.run() == WL_CONNECTED)) {
 
        HTTPClient http;
 
        USE_SERIAL.print("[HTTP] begin...\n");
        // configure traged server and url
 
 
        http.begin("http://user:password@192.168.1.12/test.html");
 
        /*
          // or
          http.begin("http://192.168.1.12/test.html");
          http.setAuthorization("user", "password");
 
          // or
          http.begin("http://192.168.1.12/test.html");
          http.setAuthorization("dXNlcjpwYXN3b3Jk");
         */
 
 
        USE_SERIAL.print("[HTTP] GET...\n");
        // start connection and send HTTP header
        int httpCode = http.GET();
 
        // httpCode will be negative on error
        if(httpCode > 0) {
            // HTTP header has been send and Server response header has been handled
            USE_SERIAL.printf("[HTTP] GET... code: %d\n", httpCode);
 
            // file found at server
            if(httpCode == HTTP_CODE_OK) {
                String payload = http.getString();
                USE_SERIAL.println(payload);
            }
        } else {
            USE_SERIAL.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
        }
 
        http.end();
    }
 
    delay(10000);
}