diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-06-25 21:24:09 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-06-25 21:24:09 -0700 |
commit | cd182f6588d871331284127ea2c6f395a6870158 (patch) | |
tree | e9068a278ea3a942e37fad682d486096b661dcb5 /samples/OAuthConsumerWpf/MainWindow.xaml.cs | |
parent | 52497c71a03a00b445f14c341be28f67b91f40d8 (diff) | |
download | DotNetOpenAuth-cd182f6588d871331284127ea2c6f395a6870158.zip DotNetOpenAuth-cd182f6588d871331284127ea2c6f395a6870158.tar.gz DotNetOpenAuth-cd182f6588d871331284127ea2c6f395a6870158.tar.bz2 |
OAuth 2 Authorization Server no longer accepts authorization code requests from clients with empty secrets.
Diffstat (limited to 'samples/OAuthConsumerWpf/MainWindow.xaml.cs')
-rw-r--r-- | samples/OAuthConsumerWpf/MainWindow.xaml.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthConsumerWpf/MainWindow.xaml.cs b/samples/OAuthConsumerWpf/MainWindow.xaml.cs index eacee60..3c55eeb 100644 --- a/samples/OAuthConsumerWpf/MainWindow.xaml.cs +++ b/samples/OAuthConsumerWpf/MainWindow.xaml.cs @@ -61,7 +61,7 @@ AuthorizationEndpoint = new Uri("http://localhost:50172/OAuth/Authorize"), TokenEndpoint = new Uri("http://localhost:50172/OAuth/Token"), }; - this.wcf = new UserAgentClient(authServer, "sampleImplicitConsumer"); + this.wcf = new UserAgentClient(authServer, "sampleconsumer", "samplesecret"); } private void beginAuthorizationButton_Click(object sender, RoutedEventArgs e) { |