diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-05-13 19:58:24 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-05-13 19:58:24 -0700 |
commit | 91b551a888d3cae98cf5f1053c6f5c7141db4a3f (patch) | |
tree | a383f282986df00dd2e8aa98e12e102c8cee665f /samples/DotNetOpenAuth.ApplicationBlock | |
parent | 448c6dc2e352a49054358907abec3f9bfca3cf13 (diff) | |
download | DotNetOpenAuth-91b551a888d3cae98cf5f1053c6f5c7141db4a3f.zip DotNetOpenAuth-91b551a888d3cae98cf5f1053c6f5c7141db4a3f.tar.gz DotNetOpenAuth-91b551a888d3cae98cf5f1053c6f5c7141db4a3f.tar.bz2 |
Facebook OAuth 2.0 client now works.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/FacebookClient.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/FacebookClient.cs b/samples/DotNetOpenAuth.ApplicationBlock/FacebookClient.cs index be4df21..b7df5dd 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/FacebookClient.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/FacebookClient.cs @@ -1,12 +1,17 @@ -using System.Web; -using DotNetOpenAuth.OAuthWrap; +//----------------------------------------------------------------------- +// <copyright file="FacebookClient.cs" company="Andrew Arnott"> +// Copyright (c) Andrew Arnott. All rights reserved. +// </copyright> +//----------------------------------------------------------------------- namespace DotNetOpenAuth.ApplicationBlock { using System; using System.Collections.Generic; using System.Linq; using System.Text; + using System.Web; using DotNetOpenAuth.Messaging; + using DotNetOpenAuth.OAuthWrap; public class FacebookClient : WebAppClient { private static readonly AuthorizationServerDescription FacebookDescription = new AuthorizationServerDescription { |