To get started with this article, we will build a WCF Restful service which is a so called service provider & client application (in this case its a web app) which uses services so it is called a consumer.
I wanted to build a security layer on top of my WCF Restful service. So when I Google I found many links targeting OAUTH & all the articles or posts talk about using OAUTH with complicated examples & I could not figure out where to start & how to proceed to achieve this.
After my many clicks on Google, I could find pieces of code to understand what needs to be done to provide security for my Restful services.
So in this article, I will try to keep things as simple as possible & showcase how to achieve this complicated task.
So what is OAUTH?
OAuth is the standardization and combined wisdom of many well-established industry protocols. It is similar to other protocols currently in use (Google AuthSub, AOL OpenAuth, Yahoo BBAuth, Upcoming API, Flickr API, Amazon Web Services API, etc).
DotNetOpenAuth is a consumer and service provider implementation for OAuth 1.0 and 1.0a for .NET, written in C#. It has built-in support for HMAC-SHA1, RSA-SHA1, and PLAINTEXT signature methods with extensibility to add others.
Many people have contributed towards OAUTH implementations for languages like JAVA, .NET, PERL, PHP etc... DevDefined OAuth, has contributed for .NET, before we start on the example download the base class from https://oauth.googlecode.com/svn/code/csharp/OAuthBase.cs
Now let's get on to the code part. In this article, I will not discuss how to build a RESTFUL service from scratch.
WCF Restful Service Using OAUTH
Ok, in my WCF Restful service I have implemented a get method (GetSampleMethod_Without_OAuth) without using OAUTH. The following is the simple implementation (I hope it is quite simple):
- [OperationContract(Name = "GetSampleMethod_Without_OAuth")]
- [WebGet(UriTemplate = "GetSampleMethod_Without_OAuth/inputStr/{name}")]
- string GetSampleMethod_Without_OAuth(string name);
- public string GetSampleMethod_Without_OAuth(string strUserName)
- {
- StringBuilder strReturnValue = new StringBuilder();
- // return username prefixed as shown below
- strReturnValue.Append(string.Format("You have entered userName as {0}", strUserName));
- return strReturnValue.ToString();
- }
So to verify this method open the browser with the following URL:
https://localhost/MyService.svc/GetSampleMethod_Without_OAuth/inputStr/suryaprakash
In this case you will see the output & if you notice this service is wide open to anyone. So to overcome such issues we can use the following implementation.
Now let's implement another method with OAuth security. This method would return the same output as above but before processing, it would check for CONSUMERSECRET which is supposed to be sent from the client to make use of the services.
If the key doesn't match it would return an unauthorized request.
This consumer secret can be shared to multiple clients. Apart from the consumer secret there are parameters like oauth_timestamp, oauth_nonce, URL etc which must be sent (more details on https://oauth.net/code/).
In my case the consumer secret is "suryabhai" which has to be sent along with the service call. The Authenticate method would read all input parameters & send it to the OAuthBase class & finally it would return true or false which will define whether to process the request or deny the request.
Let's find the following code:

Shivani SinhaPosted Dec 12, 2022, 12:19 PM
I am always getting Unauthorized Request. How to resolve it?
kishor shindePosted Sep 9, 2019, 1:43 AM
Thanks for posting such a nice article, I am looking for the same. Is your sample source is available to download for reference.
Gaurav GuptaeditedPosted Apr 26, 2012, 12:22 AMEdited Apr 26, 2012, 12:23 AM
Hi, What is the difference between RESTfull service and a Soap service.?
Arjun PanwarPosted Apr 25, 2012, 12:28 AM
Hi...How to send an PUT request to a WCF 4.0 REST service?