You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
Hi,
what is the correct way to create a raw body data parameter?
This does not send the parameter correctly:
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)}
})
Like this in postman:
The text was updated successfully, but these errors were encountered:
dpmontero
changed the title
OAuthUtility.Post parameter json body
[SOLVED] OAuthUtility.Post parameter json body
Jun 3, 2019
Hi,
what is the correct way to create a raw body data parameter?
This does not send the parameter correctly:
Like this in postman:
The text was updated successfully, but these errors were encountered: