admin管理员组文章数量:1420519
I am trying to get the access_token
from keycloak using axios using client credentials. However, I am getting a 400 error when I use axios post request to get the access_token.
I havet tested my client credentials using postman and it does return the access__token however, when using in a NextJS app I get a 400 error:
currently inside my _app.tsx
file I have the following method:
const getToken = () => {
let token: string = undefined;
const realm = process.env.NEXT_PUBLIC_KEYCLOAK_REALM;
const keycloakClientSecret = process.env.NEXT_PUBLIC_KEYCLOAK_BEARER_CLIENT_SECRET;
const kcTokenEndpoint = `http://localhost:8080/auth/realms/${realm}/protocol/openid-connect/token`;
axios({
method: 'POST',
url: kcTokenEndpoint,
data: {
client_id: 'keycloak-token-bearer', // create client in keycloak with same name
client_secret: keycloakClientSecret,
grant_type: 'client_credentials',
},
headers: {
'Content-type': 'application/x-www-form-urlencoded',
},
withCredentials: true,
})
.then(response => {
token = (response as any)?.access_token;
})
.catch(error => {
token = undefined;
});
return token;
};
Which I see returns a 400 (Bad Request) error
When I check the response I see the following:
error "invalid_request"
error_description "Missing form parameter: grant_type"
I am trying to get the access_token
from keycloak using axios using client credentials. However, I am getting a 400 error when I use axios post request to get the access_token.
I havet tested my client credentials using postman and it does return the access__token however, when using in a NextJS app I get a 400 error:
currently inside my _app.tsx
file I have the following method:
const getToken = () => {
let token: string = undefined;
const realm = process.env.NEXT_PUBLIC_KEYCLOAK_REALM;
const keycloakClientSecret = process.env.NEXT_PUBLIC_KEYCLOAK_BEARER_CLIENT_SECRET;
const kcTokenEndpoint = `http://localhost:8080/auth/realms/${realm}/protocol/openid-connect/token`;
axios({
method: 'POST',
url: kcTokenEndpoint,
data: {
client_id: 'keycloak-token-bearer', // create client in keycloak with same name
client_secret: keycloakClientSecret,
grant_type: 'client_credentials',
},
headers: {
'Content-type': 'application/x-www-form-urlencoded',
},
withCredentials: true,
})
.then(response => {
token = (response as any)?.access_token;
})
.catch(error => {
token = undefined;
});
return token;
};
Which I see returns a 400 (Bad Request) error
When I check the response I see the following:
error "invalid_request"
error_description "Missing form parameter: grant_type"
Share
Improve this question
edited Jul 9, 2021 at 17:00
Danila
18.7k2 gold badges54 silver badges79 bronze badges
asked Jul 9, 2021 at 16:46
ashes999ashes999
1,3242 gold badges22 silver badges48 bronze badges
2 Answers
Reset to default 3axios.post
is an async operation. Currently you always return undefined
from your function because you are not waiting for axios
request to resolve.
If you have async function then you can only return a promise from it.
So you either need to do that:
// Add return here
return axios({
method: 'POST',
url: kcTokenEndpoint,
data: {
client_id: 'keycloak-token-bearer', // create client in keycloak with same name
client_secret: keycloakClientSecret,
grant_type: 'client_credentials',
},
headers: {
'Content-type': 'application/x-www-form-urlencoded',
},
withCredentials: true,
})
.then(response => {
// Return token here
return (response as any)?.access_token;
})
Or make getToken
function async
and await
axios request:
const getToken = async () => {
const realm = process.env.NEXT_PUBLIC_KEYCLOAK_REALM;
const keycloakClientSecret = process.env.NEXT_PUBLIC_KEYCLOAK_BEARER_CLIENT_SECRET;
const kcTokenEndpoint = `http://localhost:8080/auth/realms/${realm}/protocol/openid-connect/token`;
cosnt { response } = await axios({
method: 'POST',
url: kcTokenEndpoint,
data: {
client_id: 'keycloak-token-bearer', // create client in keycloak with same name
client_secret: keycloakClientSecret,
grant_type: 'client_credentials',
},
headers: {
'Content-type': 'application/x-www-form-urlencoded',
},
withCredentials: true,
})
return response.access_token;
};
Obviously now you need to await
getToken
function or use then(...)
too
use URLSearchParams for encode request.
const getToken = async () => {
const params: {
client_id: 'keycloak-token-bearer', // create client in keycloak with same name
client_secret: keycloakClientSecret,
grant_type: 'client_credentials',
},
const dataParams = new URLSearchParams(params);
const realm = process.env.NEXT_PUBLIC_KEYCLOAK_REALM;
const keycloakClientSecret = process.env.NEXT_PUBLIC_KEYCLOAK_BEARER_CLIENT_SECRET;
const kcTokenEndpoint = `http://localhost:8080/auth/realms/${realm}/protocol/openid-connect/token`;
const { response } = await axios({
method: 'POST',
url: kcTokenEndpoint,
data: dataParams,
headers: {
'Content-type': 'application/x-www-form-urlencoded',
},
withCredentials: true,
})
return response.access_token;
};
本文标签:
版权声明:本文标题:javascript - Get Keycloak access_token using client credentials using axios throws 400 error in NextJS app - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745337015a2654086.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论