esp8266 nodeMCU 发送get请求,返回体是html文件
请问各位大佬,我使用esp8266 nodeMCU 发送get请求,返回体是html文档。怎么读取其中的数据?api返回的文件是html格式的,为什么不能在串口监视器打印?
但我换了一个返回json文件的api,是可以在串口监视器打印的。
void geturl()
{
HTTPClient http;
Serial.print(" begin...\n");
String url="https://images.bemfa.com/cloud/v1/get/?uid=1823ec2d13e9d8c69b196d6822d8f17d&topic=esp32CAM";
http.begin(url);
Serial.print(" GET...\n");
String response=http.getString();
Serial.println(response);
http.end();
}
页:
[1]