I am trying to understand how to use Laravel Passport with email and password.
I know that I should not store client_id & client_secret on client side. I wrote my own login and it's working as expected, in return I get the accesstoken, but I can't think of a way to refresh this token without storing client_id & client_secret on client. Or is there no way to refresh the accesstoken without client_id & client_secret?
Also have read How to use Laravel Passport with Password Grant Tokens? but there is no clear answer for me how and if it is possible to refresh token.
Thanks for helping!