I decided to use DotNetOpenAuth to authenticate users and get access token and then make authenticated request to their appropriate public REST API which I need.
I know there is IConsumerTokenManager and IOAuhtTokenManager interfaces, which are important to handle them appropriately. I see there is LinkedInClient. The LinkedInClient allows you to do initial authentication process and access to the accesstoken. But the problem is that this class uses its own instance of IConsumerTokenManager and we have no control over it. And also it does not allow you make authenticated requests, so you have to go back and use DotNetOpenAuthWebConsumer or WebConsumer and these classes require you to specify the instance on IConsumerTokenManager.
In short my questions are:
Should I use LinkedInClient? Can I just instantiate a WebConsumer like the following code? If I want to use LinkedInClient for simplicity sake, how do I make authenticated requests?
DotNetOpenAuthWebConsumer consumer = new DotNetOpenAuthWebConsumer(LinkedInClient.LinkedInServiceDescription , linkedInTokenManager)
Ok, I know I have to have my own implemnetation of IConsumerTokenManager, but what is the IOAuthTokenManager then?
Again, Ok, I know I have to save tokens into a database, but how? How I will be notified when they are expired in order to delete them? What else can I do to make user experience more safe and more reliable? Is saving tokens in cookies safe?
I am thinking of saving user's access token in user table in database, and then saving a cookie with the user id and then user returns back to my website I will try to authenticate them using the saved access token(actually same OAuth provider) to avoid asking them again to do log in. What else can I do?