想要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里
等大神哦 不够 用jmeter呗 感觉要做转换呢
页:
[1]