I have been studying the OAuth2 spec and lots of supporting material , but can't decide on what the best approach/flow is to use for my use case.
I have a wep applicaton that my users can access via a SSO mechaism. its a basic enough mechanism, but it involves the user authorising themselves on their own network, and sending me an ecrypted token which contains the user information. I process this and set up a session on my web app.
I now have a set of rest api's that will allow a mobile web client (currently android) to pull data down from my web app. I want to re-use this SSO mechanism to generate an OAuth token which the mobile client uses to identify themselves with each rest request. Ideally the flow would be seamless, i.e. the user opens a browser on their phone, authenticates on their own system, and is directed to a home url for the mobile web client with an OAuth token.
From what I have read all the OAuth2 flows seem to work the other way, i.e. the user first talks to my Authorisation server, then will get redirected to their own authentication system and will then be redirected back to my authorisation server and be issued a token. My worry is that this way around may require changes on how my users authorise themselves locally.
Am I missing something here?