Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

I believe the LinkedInClient class is designed strictly with user authentication in mind -- not for authorizing your web server to make subsequent authorized HTTP calls using an access token. It appears you can actually pass in your own instance of IOAuthTokenManager to its constructor, but I'm not sure whether that will help you.

The LinkedInClient class, and other classes in the DotNetOpenAuth.AspNet assembly, are useful in that they bring a simple front-end to several common services, but in exchange they are fairly limited in what they can do, it seems. Whenever you need more than they offer, falling back to the general purpose WebConsumer class (for OAuth 1.0) or WebServerClient class (for OAuth 2.0O seems like the right approach.

share|improve this answer
Thanks for your answer, your answer made me correct about passing token manager to LinkedInClient. However, your answer did not helped me at all. – Sam Jun 13 '12 at 4:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.