diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-09 08:35:42 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-09 08:35:42 -0700 |
commit | 07047811a7dfd1218de8f20393a282391e2f35cc (patch) | |
tree | c33caa391a349f108d3de2989e183cf7e9c316d7 /samples/OAuthConsumerWpf | |
parent | 1b8bd07ddd70b8c1f9dc0ae45068a0f7ee7fd82d (diff) | |
download | DotNetOpenAuth-07047811a7dfd1218de8f20393a282391e2f35cc.zip DotNetOpenAuth-07047811a7dfd1218de8f20393a282391e2f35cc.tar.gz DotNetOpenAuth-07047811a7dfd1218de8f20393a282391e2f35cc.tar.bz2 |
A bit of OAuth2 channel refactoring.
Diffstat (limited to 'samples/OAuthConsumerWpf')
-rw-r--r-- | samples/OAuthConsumerWpf/MainWindow.xaml | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/samples/OAuthConsumerWpf/MainWindow.xaml b/samples/OAuthConsumerWpf/MainWindow.xaml index 4488fab..b4a6959 100644 --- a/samples/OAuthConsumerWpf/MainWindow.xaml +++ b/samples/OAuthConsumerWpf/MainWindow.xaml @@ -157,15 +157,12 @@ <Label Grid.Row="2">User Authorization URL</Label> <TextBox Grid.Row="2" Grid.Column="1" x:Name="wrapAuthorizationUrlBox" Text="https://graph.facebook.com/oauth/authorize?display=popup" /> <Label Grid.Row="2" Grid.Column="2">GET</Label> - <Label Grid.Row="0">Flow</Label> - <ComboBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" x:Name="flowBox" SelectedIndex="1"> + <Label Grid.Row="0">Grant Type</Label> + <ComboBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" x:Name="flowBox" SelectedIndex="0"> <ComboBox.Items> - <ComboBoxItem>Web Server</ComboBoxItem> - <ComboBoxItem>User Agent</ComboBoxItem> - <ComboBoxItem>Device</ComboBoxItem> - <ComboBoxItem>Username and Password</ComboBoxItem> - <ComboBoxItem>Assertion</ComboBoxItem> - <ComboBoxItem>Client Credentials</ComboBoxItem> + <ComboBoxItem>Authorization Code</ComboBoxItem> + <ComboBoxItem>Resource Owner Basic Credentials</ComboBoxItem> + <ComboBoxItem>Access Code (direct)</ComboBoxItem> </ComboBox.Items> </ComboBox> <Label Grid.Row="3">Resource URL</Label> |