Protect Next.js API Routes?
Hi,
I have succesfully implemented Kinde to protect my Next.js application. Works nice. I have decided to go with Next.js for the backend API and database fetching as well and by default they're also protected by the standard Kinde configuration with <KindeProvider>. Problem is, I need to be able to call the api routes from other clients as well and for simplicity Postman but I can't seem to just do a request with a access token (generated in Kinde portal). The application want to redirect me to the login route when doing HTTP requests from Postman.
Is it possible to protect pages and api routes but in a way where I am allowed to call the api routes with authentication by Kinde?
4 Replies
If it helps anyone to help me this is how my middleware look like now (where I have tried solving this challenge):
I can see my bearer token in the log but I always get this in postman:
{
"message": "Unauthorized: Invalid token"
}
which indicates that the validation of jwt is not succeeding:
Hi Daniel,
Thanks for reaching out. I took a look at your middleware, and I noticed you’re manually verifying the JWT using your Kinde client secret. Our access tokens are typically signed using an asymmetric algorithm (RS256), which means they’re verified using a public key (accessible via our JWKS endpoint), not the client secret. This mismatch is often why you see the "Unauthorized: Invalid token" error when testing via Postman.
To resolve this, you have a couple of options:
• Use our built‐in Next.js authentication helpers (like withAuth) for API routes, which handle token verification (including fetching the correct public keys) automatically.
• If you need custom JWT validation, consider using a library such as jwks‑rsa to fetch the JWKS from your Kinde domain (e.g. https://<your_kinde_subdomain>.kinde.com/.well‑known/jwks) and verify the token’s signature accordingly.
Could you please confirm if the token’s header indicates RS256? If so, updating your verification process should clear the issue. Let me know if you have any questions or need further assistance!
For more details on token verification and access tokens, please refer to our documentation
https://docs.kinde.com/build/tokens/about-access-tokens/
https://docs.kinde.com/developer-tools/about/using-kinde-without-an-sdk/
Kinde docs
Using Kinde without an SDK
Our developer tools provide everything you need to get started with Kinde.
Hi @Ages and thank you so much for this. I will read through the links.
Why I did not use withAuth for API routes was jsut because I could not get it to work for API calls from other clients. I maybe missed somehting.
Sure, Daniel.
That sounds great. Please take your time to go through the links, and let me know how it goes. If you encounter any issues or need further clarification, feel free to reach out—I’d be happy to assist you.
That sounds great. Please take your time to go through the links, and let me know how it goes. If you encounter any issues or need further clarification, feel free to reach out—I’d be happy to assist you.