diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-18 20:25:57 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-18 20:38:59 -0700 |
commit | 1cefb24fd021a0292c13d6bfd61bd81543d4dfce (patch) | |
tree | f3aa9d1cc18b7d2a37a8cc81454dffea2457b763 /samples/OAuthClient/WindowsLive.aspx.cs | |
parent | 5cd3b789f3966dc386cf91aa5c988ad0155fdd5d (diff) | |
download | DotNetOpenAuth-1cefb24fd021a0292c13d6bfd61bd81543d4dfce.zip DotNetOpenAuth-1cefb24fd021a0292c13d6bfd61bd81543d4dfce.tar.gz DotNetOpenAuth-1cefb24fd021a0292c13d6bfd61bd81543d4dfce.tar.bz2 |
Renamed a client credential applicator.
Diffstat (limited to 'samples/OAuthClient/WindowsLive.aspx.cs')
-rw-r--r-- | samples/OAuthClient/WindowsLive.aspx.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthClient/WindowsLive.aspx.cs b/samples/OAuthClient/WindowsLive.aspx.cs index e5eb5d6..05101a7 100644 --- a/samples/OAuthClient/WindowsLive.aspx.cs +++ b/samples/OAuthClient/WindowsLive.aspx.cs @@ -14,7 +14,7 @@ public partial class WindowsLive : System.Web.UI.Page { private static readonly WindowsLiveClient client = new WindowsLiveClient { ClientIdentifier = ConfigurationManager.AppSettings["windowsLiveAppID"], - ClientCredentialApplicator = ClientCredentialApplicator.SecretParameter(ConfigurationManager.AppSettings["WindowsLiveAppSecret"]), + ClientCredentialApplicator = ClientCredentialApplicator.PostParameter(ConfigurationManager.AppSettings["WindowsLiveAppSecret"]), }; protected void Page_Load(object sender, EventArgs e) { |