0
I持ちのpythonで、次のHTTP POST要求:変換するために、C#HTTPリクエスト
var tHttpReq = (HttpWebRequest)WebRequest.Create(URL);
// adds basic headers
tHttpReq.ContentType = "application/json";
tHttpReq.Method = "POST";
tHttpReq.Accept = "application/json";
using (StreamWriter sWriter = new StreamWriter(tHttpReq.GetRequestStream()))
{
// creates request body in the concrete class
string rBody = "{\"username\": \"User\", \"password\": \"Password\", \"output_mode\": \"json\"}";
// writes the data to the stream
sWriter.Write(rBody);
sWriter.Flush();
}
var webHttpResp = (HttpWebResponse)tHttpReq.GetResponse();
:
auth_req = requests.post(baseurl,
data={'username': 'User', 'password': 'Password', 'output_mode': 'json'}, verify=False)
私はへの要求を "変換" しようとしているC#次のように
そして、私は間違った要求のエラーを得ました、何が問題ですか?
ありがとうございました。
ここから来ているwebRequestはどこですか?あなたは、私の代わりにtHttpReqを使うべきです – Newboy
@Newboy、ええ、そのタイプミス、投稿を編集してください。 – CSharpBeginner