web-dev-qa-db-ja.com

ESP8266 WiFiClientシンプルHTTP GET

ESP8266と ESP8266WiFiライブラリ を使用してWebページを読み取るという単純な問題に取り組んでいます。

例では数行だけを変更しましたが、何が問題なのかわかりません。それは私のコードです:

include <ESP8266WiFi.h>

const char* ssid     = "WiwoNET";
const char* password = "xxxxxxx";

const char* Host = "https://pure-caverns-1350.herokuapp.com";

void setup() {
  Serial.begin(115200);
  delay(10);

  // We start by connecting to a WiFi network

  Serial.println();
  Serial.println();
  Serial.print("Connecting to ");
  Serial.println(ssid);

  WiFi.begin(ssid, password);

  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }

  Serial.println("");
  Serial.println("WiFi connected");  
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
}

int value = 0;

void loop() {
  delay(5000);
  ++value;

  Serial.print("connecting to ");
  Serial.println(Host);

  // Use WiFiClient class to create TCP connections
  WiFiClient client;
  const int httpPort = 80;
  if (!client.connect(Host, httpPort)) {
    Serial.println("connection failed");
    return;
  }

  // We now create a URI for the request
  String url = "/stan";

  Serial.print("Requesting URL: ");
  Serial.println(url);

  // This will send the request to the server
  client.print(String("GET ") + url + " HTTP/1.1\r\n" +
               "Host: " + Host + "\r\n" + 
               "Connection: close\r\n\r\n");
  delay(10);

  // Read all the lines of the reply from server and print them to Serial
  Serial.println("Respond:");
  while(client.available()){
    String line = client.readStringUntil('\r');
    Serial.print(line);
  }

  Serial.println();
  Serial.println("closing connection");
}

そして、私がシリアルモニターで見るものは:

Connecting to WiwoNET
.......
WiFi connected
IP address: 
192.168.0.111
connecting to https://pure-caverns-1350.herokuapp.com
Requesting URL: /stan
Informacja zwrotna:
HTTP/1.1 400 Bad Request
Connection: close
Server: Cowboy
Date: Thu, 03 Dec 2015 23:38:59 GMT
Content-Length: 0


closing connection

私はherokuのログを見ていましたが、何も表示されていません。あらゆる種類の助けを前もってありがとう。

7
wiwo

https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/WiFiClient/WiFiClient.ino の例に従っている必要があります。

しかし、あなたが見逃した1つの重要な作品があります。 Host値の前に、http://https://などのURIスタイルのスキームを追加することはできません。例をもう一度見て、使用します

const char* Host = "pure-caverns-1350.herokuapp.com";

代わりに。

コンソールでcurl -v http://pure-caverns-1350.herokuapp.com/stanを実行すると、HTTPの内部で何が起こっているかを非常によく見ることができます。

11
Marcel Stör