51Testing软件测试论坛

标题: 想要vb.net调用webapi的demo,希望包括有body语句的范例、还有接收返回值的语句 [打印本页]

作者: 测试积点老人    时间: 2022-5-6 10:28
标题: 想要vb.net调用webapi的demo,希望包括有body语句的范例、还有接收返回值的语句
想用vb的一个按钮,点击后完成调用网页上的值。
  1. Private Sub Form4_Load(sender As Object, e As EventArgs) Handles MyBase.Load
复制代码
  1.     Dim encoding As New UTF8Encoding()
  2.     Dim request As HttpWebRequest = WebRequest.Create(“http://www.baidu.com”)
  3.     request.Method = "POST"

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

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

  10. End Sub
复制代码
运行结果及报错内容

这里面没有body语句,我不知道怎么写,在body里我想写“serialNumber”:1
还有取得返回值时用的语句也不是很明白

我的解答思路和尝试过的方法

我曾尝试使用postman里的代码,但是没有vb.net语句,用c里的到了VB里也报错

我想要达到的结果

希望得到结果,写出body语句,然后将内容反馈到textbox里



作者: bellas    时间: 2022-5-7 10:42
等大神哦
作者: kallinr    时间: 2022-5-7 11:35
不够
作者: qqq911    时间: 2022-5-7 12:26
用jmeter呗
作者: jingzizx    时间: 2022-5-7 20:39
感觉要做转换呢




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2