如何使用C#和HttpClient创建以下POST请求:
我的WEB API服务需要这样的请求:
[ActionName("exist")]
[HttpPost]
public bool CheckIfUserExist([FromBody] string login)
{
return _membershipProvider.CheckIfExist(login);
}
1
您在图像中使用什么HTTP客户端?
—
硫磺
该服务是Web Api MVC。请求的JSON格式?
—
Kiquenet '18