I am getting a response of 401 Unauthorized when trying to get a request token. Below is the Uri that I am sending.
https://api.login.yahoo.com/oauth/v2/get_request_token?oauth_nonce=611b1cdc078c42339a1136e843929a36&oauth_timestamp=1363386280&oauth_consumer_key=dj0yJmk9R29XUDZuTVc4TXN1JmQ9WVdrOWExVlZNRTE2TldjbWNHbzlNVEk0TnpnNU5UUTJNZy0tJnM9Y29uc3VtZXJzZWNyZXQmeD02Mg--&oauth_signature_method=HMAC-SHA1&oauth_signature=7f5c647c35b7e43267048da6bba4774e33ae388e&oauth_version=1.0&xoauth_lang_pref="en-us"&oauth_callback="http://localhost:52632/en/Home/OAuth?service=Yahoo"
The Uri is being sent via WebRequest.GetResponse() in .NET.
Since I am doing development on localhost, I have tried using 2 different projects, one set up as a web app (but with an unverified domain) and another as a standalone application. The consumerKey/Signature combination for both return the 401 Unauthorized response.
Is there something that I am missing?