美好的一天, 我正在使用 Postman 向 Localhost 发送 API 端点的发布请求,但遇到问题。 邮差身体 相关C#方法如下:
public IActionResult SavePaymentPlan(string obj)
{
DebtPaymentInfo info = JsonConvert.DeserializeObject<DebtPaymentInfo>(obj);
IActionResult response = Unauthorized();
}
我知道 Postman 需要上述方法的 obj。如何在 Postman 正文中提及这一点?
我尝试过以不同的方式提及 obj 但没有任何效果。