I'm facing an issue where a former frontend developer who worked on my project has access to my frontend APIs even after quitting. I've implemented Laravel Sanctum for authentication and authorization, along with a username and password system and bearer tokens. Additionally, I've set up Laravel Telescope to monitor the requests made to my API.
Despite these measures, I'm still concerned about the former developer having access to the API. I'm also providing the same APIs to my customers, which makes it even more critical to prevent unauthorized access.
What additional measures can I take to secure my APIs and prevent the former developer from accessing them? Any suggestions or best practices would be greatly appreciated. Thank you.
- Using sanctum,
- Using Bearer Token,
- Username & password,
- I am monitoring using laravel/telescope and saving logs etc. I am thinking adding one more "api token" too but not sure he can use postman etc and can take too.