summaryrefslogtreecommitdiffstats
path: root/samples/OAuthAuthorizationServer/Controllers
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-22 22:45:48 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-22 22:45:48 -0700
commit6b6c313bcc7727fe00ad3615ecaef98136ef1a6a (patch)
tree7a897fcb5598e142d05363fad66b573a76511999 /samples/OAuthAuthorizationServer/Controllers
parent2a348b9aba991312f93db75a9269702bebbe47c4 (diff)
downloadDotNetOpenAuth-6b6c313bcc7727fe00ad3615ecaef98136ef1a6a.zip
DotNetOpenAuth-6b6c313bcc7727fe00ad3615ecaef98136ef1a6a.tar.gz
DotNetOpenAuth-6b6c313bcc7727fe00ad3615ecaef98136ef1a6a.tar.bz2
Incremented the OAuth 2.0 client sample's port # so as to not conflict with the OAuth 1.0 consumer sample.
Diffstat (limited to 'samples/OAuthAuthorizationServer/Controllers')
-rw-r--r--samples/OAuthAuthorizationServer/Controllers/HomeController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthAuthorizationServer/Controllers/HomeController.cs b/samples/OAuthAuthorizationServer/Controllers/HomeController.cs
index d6dd144..685b4e7 100644
--- a/samples/OAuthAuthorizationServer/Controllers/HomeController.cs
+++ b/samples/OAuthAuthorizationServer/Controllers/HomeController.cs
@@ -40,7 +40,7 @@
dc.Clients.InsertOnSubmit(new Client {
ClientIdentifier = "sampleImplicitConsumer",
Name = "Some sample client used for implicit grants (no secret)",
- Callback = "http://localhost:59721/",
+ Callback = "http://localhost:59722/",
});
dc.SubmitChanges();