[Vuejs]-PHP API does not keep SESSION

0👍

Web APIs not uses sessions you need to use JWT for verification of users.
Web APIs are verifed sending bearer token and after verification you can store user id into cookies or localstorage.
Check JWT here

Thank You

Leave a comment