以下Web_api测试程序(postman测试api接口OK)运行时总是报错,请教老师程序如何修改?
Dim mystring As String
Dim hctest As New HttpClient("https://157.116.12.9/Web_api" )
Dim jotest As New JObject
hctest.C
jotest("jsonrpc") = "2.0"
jotest("method") = "login"
jotest("id") = 12345678
jotest("params") = New JObject
jotest("params")("username") = "lljgl"
jotest("params")("password") = "3b8c13cf10ab0e2416e253270d7f35d277dae9156ba5218837d413e8bc617b1092697f2f5f4ff23c3d44242e51271e4f380e9398ea25d9d35abf91ea9d850496"
hctest.Content = jotest.Tostring
mystring = hctest.GetData()
output.Show( mystring )
错误信息如下:
必须先将 ContentLength 字节写入请求流,然后再调用 [Begin]GetResponse。