If this is not the best space for this question, appreciate it if you could refer me to the right one.
Basically, I have a hybrid mobile App that requires to access REST modules. However, since I am protecting these modules, and want only validated users to access them, I am looking into best way to do that.
Therefore, I want to implement OAuth2.0 of the type "Resource Owner Password Credentials". This manual, covers only two types that are supported by APEX I believe ("Authorization Code" & "Implicit Grant"). Implicit grant redirect the user to ords login page. I do not want that. I want the user to insert the username/password at the client (Mobile App), and then receive a session token without seeing ords login page. It is basically the same problem mentioned by Terry in the this blog questions:

But I could not find any manual or guidelines for doing that without APEX. So my question, how can I implement OAuth2.0 of the type "Resource Owner Password Credentials" using PL/SQL. Is there any references, tips?
Resource Owner Password Credentials