diff options
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs b/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs deleted file mode 100644 index a24e5b3..0000000 --- a/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookClient.cs +++ /dev/null @@ -1,28 +0,0 @@ -//----------------------------------------------------------------------- -// <copyright file="FacebookClient.cs" company="Outercurve Foundation"> -// Copyright (c) Outercurve Foundation. 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.OAuth2; - - public class FacebookClient : WebServerClient { - private static readonly AuthorizationServerDescription FacebookDescription = new AuthorizationServerDescription { - TokenEndpoint = new Uri("https://graph.facebook.com/oauth/access_token"), - AuthorizationEndpoint = new Uri("https://graph.facebook.com/oauth/authorize"), - }; - - /// <summary> - /// Initializes a new instance of the <see cref="FacebookClient"/> class. - /// </summary> - public FacebookClient() : base(FacebookDescription) { - } - } -} |