0
The idea is this:
I have an android application that will consume my services that I will create using Spring. However, these services should have some security, where only people authenticated in my application can consume such services.
Already in my Android application I will use Firebase to control authentications, using email and password. So I won’t need to set up anything security on my server, like using Spring Oauth2.
My question is: Once the user authenticates in my application and then he wants to consume some service I made available using Spring on the Server, such as a GET LIST of something, as I validated that the user is authenticated in my application, and so I can give him access to the requested service?