如何在邮递员中编写此jQuery代码?

时间:2019-06-27 09:48:05

标签: jquery api postman

我开始学习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软件中编写此代码?更具体地说,标题,参数等是哪一部分?我正在尝试了解请求的“解剖”,即使这可能不是开始的最佳选择,但我还是想尝试一下。

先谢谢了。

1 个答案:

答案 0 :(得分:0)

所以,我最终做了以下事情:

  • 将网址设置为https://my.delogue.com/auth/token
  • 在邮递员的正文下,我选择了x-www-form-urlencoded,并传递了以下值(其中usernamepassword的值已替换为我的凭据): enter image description here

显然,这对我有用。