我在apim中有一个rest api,我想从我的vb.net类中调用它: 这是我在Postman中用来调用此api的网址: https:// {{APIM_URL}} / v1 /“ PARAMETER1” / contents /“ PARAMETER2” / file?volume =“ PARAMETER3”
我不确定如何通过vb.net拨打电话。 我尝试了以下无效的方法:
'Build up the data to POST.
Dim postData As List(Of KeyValuePair(Of String, String)) = New List(Of KeyValuePair(Of String, String))()
Dim content = New FormUrlEncodedContent(postData)
Dim response = client.PostAsync("/v1/pccdoc/contents/" + docId + "/file?volume=27721752", content)
引发的错误是404-未找到文件
有任何线索吗?我要去哪里错了?