perl6 Socket: 发送HTTP请求
Posted FireC@t @ Perl6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了perl6 Socket: 发送HTTP请求相关的知识,希望对你有一定的参考价值。
sub MAIN(Str $host,Str $path, Int $port) {
my $send = "GET $path HTTP/1.1\r\nHost: $host\r\n\r\n";
my $c = IO::Socket::INET.new(:host($host), :port($port));
$c.print: $send;
while (my $buff = $c.recv(1024)) {
say $buff.print;
}
$c.close;
}
以上是关于perl6 Socket: 发送HTTP请求的主要内容,如果未能解决你的问题,请参考以下文章
TypeError:在尝试发送 http 请求时需要一个类似字节的对象,而不是“str”