tags:

views:

199

answers:

1

How do you implement oauth as a provider in c#?

There is a c# clas. For it, here http://oauth.net/code/ but I need to know how do I use it?

+1  A: 

If you're talking about a membership provider, there is a previous discussion here:

If you mean as a third-party API access provider, there is an example here:

Turnkey
cool, btw as a provider who are the "Consumer key" and "Consumer secret" generated?
K001
I don't think that is specified by OpenAuth, but it is advisable to generate a secret that is reasonably long and random. They key is often just a web address of the consumer or something else to make it easy to identify the consumer in your records.
Turnkey