为什么邮递员在此POST请求正文中显示“错误的字符串”

Sal*_*man 8 post json postman

当我在Postman上测试POST请求时,图像中显示了详细信息。发送此请求时出现错误。

{“ FaultId”:“无效的帖子数据,请更正请求”,“ fault”:“ FAULT_INVALID_POST_REQUEST”}

我错过了什么吗?细节:

错误

Dan*_*ton 17

看起来引号是不正确的,可能是由于复制和粘贴了特定格式的文档而引起的。

尝试手动删除/更换或使用以下方法:

{
    "FirstName": "blah",
    "LastName": "blah",
    "Username": "blah",
    "Password": "blah",
    "Email": "blah@blah.com"
}
Run Code Online (Sandbox Code Playgroud)