Http 如何将JSON对象发布到实时网站

Http 如何将JSON对象发布到实时网站,http,post,postman,Http,Post,Postman,问题是我正试图通过邮递员按照下面的说明使用我的信息发出POST请求,请参见 应用说明 若要申请,请将申请发送至: https://******.com/about/careers/apply?数据= 通过将数据变量的内容设置为具有以下属性的有效JSON: name: String with your name (required) email: String with your email address (required) position: String with the position

问题是我正试图通过邮递员按照下面的说明使用我的信息发出POST请求,请参见 应用说明 若要申请,请将申请发送至:

https://******.com/about/careers/apply?数据=

通过将数据变量的内容设置为具有以下属性的有效JSON:

name: String with your name (required)
email: String with your email address (required)
position: String with the position you are applying for (required)
urls: Array of strings with links to your resume (required), along with any personal sites, sample projects, or your Github profile
comment: String with any comment/request you might have (optional)
成功后,您将收到200条回复。 我使用postman按照说明操作,将内容类型设置为applicationjson,但返回时出错;没有传递数据。HTTP 400错误请求


但是,为了将JSON数据发布到API,大多数服务器都需要一个有效的
内容类型:application/JSON

有关内容类型标题的更多信息:

请阅读并提供缺少的详细信息,您的问题不太容易理解
{
    "name": "John Doe",
    "email" : "john.doe@gmail.com",
    "position" : "Software Engineer",
    "urls":[ "https://github.com/johnDoe" ],
    "comment": "na"
}