React Kinde with FastAPI python
I have react application and I'm using there react sdk for kinde with provider. Now i have access token from react app
My goal is to grab this access token from react app pass it into Headers and make an API call to my FastAPI python backend.
How i can validate this access token on my backend ?
3 Replies
Hi there,
Thanks for your question. Here's how you can handle access token validation between your React frontend and FastAPI backend using Kinde:
---
Frontend – React:
Use the Kinde React SDK to retrieve the access token and include it in the
Authorization
header when making API requests to your backend:
---
Backend – FastAPI (Python):
To validate the token on your FastAPI server, follow these steps:
1. Install the Kinde SDK:
2. Configure the Kinde client:
3. Validate the access token:
---
Additional Notes:
- Make sure your API is registered in the Kinde dashboard.
- Define an audience for your API – this ensures the token includes the correct aud
claim.
- When using the React SDK, the audience is typically set automatically.
- Keep in mind: the kinde_client
instance stores the access token internally, so you’ll need to create one per user session.
Let me know if you'd like help setting up the audience or if you run into any issues during integration.in which format it's accept access token in kinde_client.is_authenticated_token?
Hi,
The
🔗 https://docs.kinde.com/developer-tools/sdks/frontend/react-sdk/#test-sign-up Here’s an example of what the token might look like: This is the raw JWT string you should send from the React frontend to your Python backend. On the backend, you can extract the token from the
is_authenticated_token
method expects the access token in raw JWT string format.
If you're using the React SDK, you'll receive the correct format automatically when calling getAccessToken()
. You can refer to the documentation here:🔗 https://docs.kinde.com/developer-tools/sdks/frontend/react-sdk/#test-sign-up Here’s an example of what the token might look like: This is the raw JWT string you should send from the React frontend to your Python backend. On the backend, you can extract the token from the
Authorization
header and pass it directly to is_authenticated_token()
:
The token includes standard JWT claims like aud
, exp
, and iss
, which Kinde validates internally when you call this method.
Let me know if you need help implementing this or debugging a specific case!