c ++程序,在Windows下发送带有参数的http get请求

时间:2018-08-06 10:08:49

标签: c++ http post get

我搜索了有关使用C ++或C编程语言发送HTTP请求的信息,我在GitHub上找到了一些库,其中大多数是供Linux使用的。

就我而言,我只需要一些基本的代码,即可在Windows下使用c或c ++语言通过HTTP GET或POST Request发送两个参数。

例如:'www.website.com/targetpage.php?param1=value&m2=value'。

1 个答案:

答案 0 :(得分:1)

签出Boost Beast

有关如何发送HTTP请求的信息,请参见this related question。您可以通过修改req.url变量来发送参数。因此,在您的情况下,它将是/targetpage.php?param1=value&m2=value'而不是/