I have a Asp.Net WebApi that provide some native and javascript platforms with its data.
I have identityserver3 as the authentication/authorization module for this WebApi.
For example i used implicit flow in the communcation between my WebApi and It's native clients.
Now I want to integrate this WebApi system with Facebook Parse server system.
so for example:
If there is a user already in the parse server database and login to my identityserver, i can initiate requests from my WebApi to the Parse server and return data to it.
I know that parse using oAuth2 and OpenId too but what is the required steps for that, or what is the best approach for that?