I am looking for a good single sign on api that i can utilize to integrate an asp.net webform to moodle.
Scenario: I have an asp.net website with forms authentication on domain. Once user logs in they are provided with different web pages to browse lets say page A, page B and page C. On page C we have a button which clicked the user should be redirected to their moodle page. So here is the single sign on functionality that i want to implement. Moodle should only allow access to users page if the user is logged in to our website. Also we need to pass the unique customer id to moodle so that moodle can retrieve all the users information based on the unique customer id. Note: Moodle has its own database to query the users data based on the customer id we provide.
Restrictions: We do not want the users to access their moodle page outside our website means they cannot just copy paste the url on the button click on our website to get into their moodle page.
They should be allowed access only by clicking the button on our website after they have logged into our website.
Please note that moodle and asp.net website both are on different domains and on different site locations as well.
I have looked into OAuth 2.0 and dotnetopenauth but i am confused that whether they are appropriate for this scenario.