我开始学习API和集成。到目前为止,我对使用URL进行请求没有任何问题。但是,前几天,我遇到了一些API文档,其中包含以下jQuery示例:
$.ajax({
url: "https://my.delogue.com/auth/token",
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: 'json',
cache: false,
crossDomain: true,
data: {
"grant_type": "password",
"username": "yourusername",
"password": "yourpassword"
},
success: function(data) {
token = data.access_token;
},
error: function(x, y, z) {
alert(x + '\n' + y + '\n' + z);
}
});
如何在Postman软件中编写此代码?更具体地说,标题,参数等是哪一部分?我正在尝试了解请求的“解剖”,即使这可能不是开始的最佳选择,但我还是想尝试一下。
先谢谢了。