Dim json As String = Me.TextBox1.Text
Dim result = OAuthUtility.Post("http://192.168.1.35:8000/api/v1/copies/fam",
parameters:=New HttpParameterCollection From {
New HttpRequestBody(json)},
contentLength:=json.Length,
contentType:="application/json",
headers:=New NameValueCollection From {
{"Authorization", String.Format("Token {0}", token)}
})
Hi,
what is the correct way to create a raw body data parameter?
This does not send the parameter correctly:
Like this in postman:
