I'm building a Rest API and a frontend written in PHP.
My question is that I intent to protect it with OAuth when third-party apps try to access it. But I don't want to use OAuth when my frontend uses the API. How can I detect/identify when an APP that is not my frontend is trying to access my API.
What's is the best strategy?
Thanks!