1
My question is the following: I have a Rails server and make queries on this server using an Android app. If I were creating a web system, I would make use of session to manage my system permissions. However, as I have the application, I do the restrictions within it (if the user does not login, will not have access to the system).
The fear I have is that someone will use the routes I created in Rails to access restricted user data and enter data fraudulently. Is there any way around it?
But from what I understand Oauth only serves when I want to use some Google or Facebook account to log in. And in case I allow registration inside my app?
– Marcio
Google and Facebook use Oauth, you can create your Oauth server and receive tokens from it
– user7807