diff options
author | David Christiansen <coding@davedoes.net> | 2012-07-01 15:11:40 -0700 |
---|---|---|
committer | David Christiansen <coding@davedoes.net> | 2012-07-01 15:11:40 -0700 |
commit | c37ddb8e4b71e92568982a705c9c6219e6f2afde (patch) | |
tree | 72380961aa0f3beef56bb7e70ba1caac8bb5b03b /src/OAuth/OAuthClient/Facebook.aspx.cs | |
parent | 06401bb049dc29cf4446eb61a4a72317a644ce54 (diff) | |
parent | 98cd8437378c0169ec31d24213d209b062b8fecb (diff) | |
download | DotNetOpenAuth.Samples-c37ddb8e4b71e92568982a705c9c6219e6f2afde.zip DotNetOpenAuth.Samples-c37ddb8e4b71e92568982a705c9c6219e6f2afde.tar.gz DotNetOpenAuth.Samples-c37ddb8e4b71e92568982a705c9c6219e6f2afde.tar.bz2 |
Merge pull request #2 from DavidChristiansen/V401-Upgrade
V401 upgrade
Diffstat (limited to 'src/OAuth/OAuthClient/Facebook.aspx.cs')
-rw-r--r-- | src/OAuth/OAuthClient/Facebook.aspx.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OAuth/OAuthClient/Facebook.aspx.cs b/src/OAuth/OAuthClient/Facebook.aspx.cs index 0f71712..4701d24 100644 --- a/src/OAuth/OAuthClient/Facebook.aspx.cs +++ b/src/OAuth/OAuthClient/Facebook.aspx.cs @@ -10,7 +10,7 @@ public partial class Facebook : System.Web.UI.Page { private static readonly FacebookClient client = new FacebookClient { ClientIdentifier = ConfigurationManager.AppSettings["facebookAppID"], - ClientSecret = ConfigurationManager.AppSettings["facebookAppSecret"], + ClientCredentialApplicator = ClientCredentialApplicator.PostParameter(ConfigurationManager.AppSettings["facebookAppSecret"]), }; protected void Page_Load(object sender, EventArgs e) { |