从邮递员处访问钥匙斗篷 API

2022-09-02 00:28:10

我已尝试从邮递员处访问密钥斗篷API。但它显示400个错误的请求。

我以以下格式调用api。

http://{hostname}:8080/auth/realms/master/protocol/openid-connect/token?username=admin&password=admin&client_id=admin-cli&grant_type=password

在标题中,我设置了content_type as application/x-www-form-urlencoded

我得到的回应如下。

{
    "error": "invalid_request",
    "error_description": "Missing form parameter: grant_type"
}

任何人都可以帮助我。任何帮助将不胜感激。提前致谢


答案 1

这个问题有点晚了,但你确实问了邮递员而不是卷曲。所以你必须把选项放在x-www-form-urlencoded中enter image description here


答案 2

您通过 POST 客户端调用 API

网址 - http://localhost:8080/auth/realms/Demo/protocol/openid-connect/token

所以在上面的网址中,我用作我的领域而不是.Demomaster

ContentType - “Content-Type”:“application/x-www-form-urlencoded”

参数

{
"client_secret" : "90ec9638-7647-4e65-ad20-b82df3341084",
"username" : "ankur",
"password" : "123456",
"grant_type" : "password",
"client_id": "app-client"
}

设置标头,如下所示

enter image description here

数据需要传递,如下所示 enter image description here


推荐