Welcome to the Kinde community.

A
A
A
M
T
Members
jamie
j
jamie
Offline, last seen 3 weeks ago
Joined September 23, 2024
When I search for an email domain (e.g. @mydomain.com) it seems to only show emails that contain a + in the prefix.
3 comments
O
j
I've added a new environment for our staging server but for some reason I get an "Invalid callback URL" error response when attempting log in.

I have ensured that the appropriate callback URLs have been set (as pictured), but to no avail.
7 comments
D
j
Our implementation has been working reliably for over a week, it seems like it's a problem on your end.
18 comments
j
a
D
I'm attempting to follow the "Quick Start" guide on signing in users. I have successfully retrieved the CALLBACK_AUTHORIZATION_CODE, but when I attempt to request the token I get a 400 error.

I'm following this documentation: https://kinde.com/docs/developer-tools/using-kinde-without-an-sdk/#handling-the-callback

The request I'm making is to:
Plain Text
https://<your_kinde_sudomain>.kinde.com/oauth2/token
?client_id=<your_kinde_client_id>
&client_secret=<your_kinde_client_secret>
&grant_type=authorization_code
&redirect_uri=<your_app_redirect_url>
&code=<CALLBACK_AUTHORIZATION_CODE>


I have triple checked that each of the credentials being sent is correct, yet I still get a 400 response with no error message in the body of the response.

Note: Probably not super important, but my backend is written in Go, although I can't seem to get it to work even with a basic curl request:
Plain Text
curl -vv -XPOST -H "Content-Type: application/x-www-form-urlencoded" \
  "https://karehero.kinde.com/oauth2/token?client_id=${CLIENT_ID}&client_secret=${CLIENT_SECRET}&grant_type=authorization_code&redirect_uri=http://localhost:3000&code=${CODE}"
36 comments
j
e
A
V
Typo on: https://kinde.com/docs/authentication-and-access/apple/

It suggests installing jet, but the package to be installed is actually jwt
2 comments
A
j