I'm making a app with Laravel in the backend and create-react-app in the front end and I'm using Passport's Password grant type to secure the connection. But the problem is I don't know how to store the client secret, id and even the access token securely. Thanks.
Store client secret, id and token in a react app
2.9k Views Asked by Le Dinh Nhat Khanh At
3
There are 3 best solutions below
0

You can use these simple libraries to store user's id and access token in your react app:
3)session
It depends on the client you are using (axios, superagent, etc), but you will need to revise this section of the passport documentation: https://laravel.com/docs/master/passport#consuming-your-api-with-javascript
You will need to ensure you have the following middleware in place:
And that you javascript async client is set up to send the following on every request:
I don't know if you actually want to be storing client secret, id and the access token on the frontend. You say you want to store it on the frontend securely, this is generally accepted as being impossible, unless I am misunderstanding the question