Im just starting with API and I need a little bit of help...
I have this code:
<!DOCTYPE html>
<html>
<head>
<title></title>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
</head>
<body>
<script type="text/javascript">
var json=`{
"Teamname": "example",
"Password": "example",
"members": [{
"name": "John",
"surname": "Doe",
},
{
"name": "Kate",
"surname": "Smith",
},
{
"name": "Brad",
"surname": "Warden",
},
{
"name": "Antony",
"surname": "McLeer",
}
]
}`;
$.ajax({
type: "POST",
url: "http://52.233.158.172/change/api/en/account/register",
data: "json",
contetType: "application/json"
});
console.log(json);
</script>
</body>
</html>
and I get for return bad request in console, I go through code several times and everything should just work fine but obviously something is missing
Also if i go with postman I get 200 OK response...can anybody help me what Am I missing?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…