测试积点老人 发表于 2022-5-6 10:28:29

想要vb.net调用webapi的demo,希望包括有body语句的范例、还有接收返回值的语句

想用vb的一个按钮,点击后完成调用网页上的值。
Private Sub Form4_Load(sender As Object, e As EventArgs) Handles MyBase.Load    Dim encoding As New UTF8Encoding()
    Dim request As HttpWebRequest = WebRequest.Create(“http://www.baidu.com”)
    request.Method = "POST"

    'request.Accept = "text/html, application/xhtml+xml, */*"
    '这是干啥的
    request.ContentType = "application/json"

    Dim Buffer As Byte() = encoding.GetBytes("serialNumber")
    Dim response As HttpWebResponse = request.GetResponse()
    MsgBox(response.ToString)

End Sub运行结果及报错内容这里面没有body语句,我不知道怎么写,在body里我想写“serialNumber”:1
还有取得返回值时用的语句也不是很明白我的解答思路和尝试过的方法我曾尝试使用postman里的代码,但是没有vb.net语句,用c里的到了VB里也报错我想要达到的结果希望得到结果,写出body语句,然后将内容反馈到textbox里

bellas 发表于 2022-5-7 10:42:46

等大神哦

kallinr 发表于 2022-5-7 11:35:27

不够

qqq911 发表于 2022-5-7 12:26:16

用jmeter呗

jingzizx 发表于 2022-5-7 20:39:27

感觉要做转换呢
页: [1]
查看完整版本: 想要vb.net调用webapi的demo,希望包括有body语句的范例、还有接收返回值的语句