{
"error" : "invalid_client",
"error_description" : "client_id: {secret}.apps.googleusercontent.com is not valid.",
"error_reason" : "invalid_client_id"
}
Latest posts made by altear147
-
RE: How to setup OAuth properly
-
RE: How to setup OAuth properly
@mark-robustelli
here, the identity provider page and credential page.
the error dialog said the client id is invalid,
I copied the id and secret from the credential page, so I'm pretty sure that there is no error like missing some character or having more character.and here the error dialog that I mentioned
-
How to setup OAuth properly
According to this article
https://fusionauth.io/docs/lifecycle/authenticate-users/identity-providers/social/google.I create Google credentials as this image
[Please repost image]
the first hidden is my web app url.
and the second section hidden is redirected url to my backend service.then create identity provider as this image
[Please repost Image]
and declare function to login and redirect like this
@Get("oauth/login")
async login(@Req() req: Request, @Res() res: Response) {
const fusionAuthURL =${process.env.FUSIONAUTH_ISSUER}/oauth2/authorize?client_id=${process.env.FUSIONAUTH_CLIENT_ID}&redirect_uri=${process.env.FUSIONAUTH_REDIRECT_URI}&response_type=code&scope=openid email profile
;
return res.redirect(fusionAuthURL);
}@Get("oauth/callback")
async callback(@Req() req: Request, @Res() res: Response) {
const user = req.user;
return res.redirect(${process.env.FRONTEND_URL}
);
}after build and deploy FusionAuth, my web app and backend service I saw login with google button at the Fusionauth admin page.
I try to login with that button, and the error dialog show me that my client id is invalid.
I try to send redirect request from my web app to backend service with the function I mentioned above
it didn't work as well.May you direct me what I was missing or misunderstanding or what I need to clarify.
thank you in advance.
-
Update user using ts SDK but the username is removed
Hello guys,
I developed the auth application using TS and fusionauth ts client SDK,
I need to use a function update user like this
const result = await this.fusionAuthService.editUser(body.userId, {
email: body.email,
firstName: body.firstName,
lastName: body.lastName,
mobilePhone: body.mobilePhone,
});after that U check on the fusionauth dashboard, the data was updated but the username and lastLoginInstant is removed from the user so I cannot login with that user.
lib version is "@fusionauth/typescript-client": "^1.48.0"
Thank you for your help.