在c#中怎么使用curl调用

gitlab release 发布使用curl调用,我想实现成一个可视化的操作。

那么在c#中怎么使用curl呢?

在c#中怎么使用curl调用

回答

用HttpClient,或者用Process调用curl

HttpClient client = new HttpClient();

var data = new { name = "release" };

var request = new HttpRequestMessage()

{

Content = new StringContent(JsonConvert.SerializeObject(data), Encoding.UTF8, "application/json"),

RequestUri = new Uri("http://localhost:3000"),

Method = HttpMethod.Post

};

request.Headers.Add("token","token1");

await client.SendAsync(request);

以上是 在c#中怎么使用curl调用 的全部内容, 来源链接: utcz.com/a/106398.html

回到顶部