我对 API 请求不太熟悉,我很难尝试设置以下身份验证。我尝试过Postman和Insomnia,但我不知道如何使用我在下面的信息填写软件要求的信息。
让我感到困惑的一件事是 URL 说“oauth2”,但授权说“基本”。
Sample authentication request:
POST https://******/issue/oauth2/token HTTP/1.1
Authorization: Basic [base64 encoded]
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
grant_type=password&username=***&password=***&scope=https://api.******.com/
我的问题是我不知道如何设置它,无论是 Insomnia 还是 Postman。我没有看到我拥有的所有信息的字段。
我有的参数:
Authorization Basic: base64["API Key":"API Secret"]
Username: *****
Password: *****
预计收到:
Sample Authentication response:
HTTP/1.1 200 OK
{"access_token":"xxxxxxxxxxx","token_type":"urn:ietf:params:oauth:token-type:jwt","expires_in":35999,"refresh_token":"xxxxxxxxxxxxxx"}
谢谢