Http 颤振-如何从具有Cloudflare DDOS保护的网站获取数据

Http 颤振-如何从具有Cloudflare DDOS保护的网站获取数据,http,flutter,dart,cloudflare,Http,Flutter,Dart,Cloudflare,我正在尝试从我的网站获取数据。但当我打印response.body时,我得到了Cloudflare DDOS防护设计的主体。这是我的密码: var url = 'https://example.com/mycontroller/myfunction/' + myParameter; http.Response response = await http.get(url); print(url.toString()); print(response.body.toString())

我正在尝试从我的网站获取数据。但当我打印
response.body
时,我得到了Cloudflare DDOS防护设计的主体。这是我的密码:

  var url = 'https://example.com/mycontroller/myfunction/' + myParameter;
  http.Response response = await http.get(url);
  print(url.toString());
  print(response.body.toString());
以下是他的输出:


I/flutter ( 5748): <!DOCTYPE HTML>
I/flutter ( 5748): <html lang="en-US">
I/flutter ( 5748): <head>
I/flutter ( 5748):   <meta charset="UTF-8" />
I/flutter ( 5748):   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
I/flutter ( 5748):   <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
I/flutter ( 5748):   <meta name="robots" content="noindex, nofollow" />
I/flutter ( 5748):   <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
I/flutter ( 5748):   <meta http-equiv="refresh" content="12">
I/flutter ( 5748):   <title>Just a moment...</title>
I/flutter ( 5748):   <style type="text/css">
I/flutter ( 5748):     html, body {width: 100%; height: 100%; margin: 0; padding: 0;}
I/flutter ( 5748):     body {background-color: #ffffff; color: #000000; font-family:-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",Arial, sans-serif; font-size: 16px; line-height: 1.7em;-webkit-font-smoothing: antialiased;}
I/flutter ( 5748):     h1 { text-align: center; font-weight:700; margin: 16px 0; font-size: 32px; color:#000000; line-height: 1.25;}
I/flutter ( 5748):     p {font-size: 20px; font-weight: 400; margin: 8px 0;}
I/flutter ( 5748):     p, .attribution, {text-align: center;}
I/flutter ( 5748):     #spinner {margin: 0 auto 

I/颤振(5748):
I/颤振(5748):
I/颤振(5748):
I/颤振(5748):
I/颤振(5748):
I/颤振(5748):
I/颤振(5748):
I/颤振(5748):
I/颤振(5748):
我/弗利特(5748):请稍等。。。
I/颤振(5748):
I/flatter(5748):html,主体{宽度:100%;高度:100%;边距:0;填充:0;}
I/flatter(5748):主体{背景色:#ffffff;颜色:#000000;字体系列:-苹果系统,系统用户界面,BlinkMacSystemFont,“Segoe用户界面”,机器人,氧气,Ubuntu,“Helvetica Neue”,Arial,无衬线字体;字体大小:16px;线条高度:1.7em;-webkit字体平滑:抗锯齿;}
I/flatter(5748):h1{文本对齐:中心;字体重量:700;边距:16px 0;字体大小:32px;颜色:000000;行高:1.25;}
I/flatter(5748):p{字体大小:20px;字体重量:400;边距:8px 0;}
I/flatter(5748):p,.attribute,{text align:center;}
I/flatter(5748):#微调器{边距:0自动
我尝试检查状态代码,得到503状态代码。如何通过DDOS保护并获取数据