summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth.Test
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-28 22:29:54 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-28 22:32:55 -0700
commit44cc811c6af84fe390454b7beaa4b43ece7a8883 (patch)
treebb52f021f3078a4330e7b0f30930453a8e758d7e /src/DotNetOAuth.Test
parentaff8bdb3b5b67fbb9f5879843d657b120b2128a7 (diff)
downloadDotNetOpenAuth-44cc811c6af84fe390454b7beaa4b43ece7a8883.zip
DotNetOpenAuth-44cc811c6af84fe390454b7beaa4b43ece7a8883.tar.gz
DotNetOpenAuth-44cc811c6af84fe390454b7beaa4b43ece7a8883.tar.bz2
Added capability to add extra fields to request token message.
Diffstat (limited to 'src/DotNetOAuth.Test')
-rw-r--r--src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs b/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs
index 5bd4629..ee574c9 100644
--- a/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs
+++ b/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs
@@ -39,7 +39,7 @@ namespace DotNetOAuth.Test {
Coordinator coordinator = new Coordinator(
channel => {
consumer.Channel = channel;
- consumer.RequestUserAuthorization(new Uri("http://printer.example.com/request_token_ready"));
+ consumer.RequestUserAuthorization(new Uri("http://printer.example.com/request_token_ready"), null);
string accessToken = consumer.ProcessUserAuthorization();
var photoRequest = consumer.CreateAuthorizedRequestInternal(accessPhotoEndpoint, accessToken);
Response protectedPhoto = channel.RequestProtectedResource(photoRequest);