summaryrefslogtreecommitdiffstats
path: root/src/OAuth/OAuthClient/Facebook.aspx.cs
blob: 0f7171269f84d0fcebeef03301336d25f4780890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace OAuthClient {
	using System;
	using System.Configuration;
	using System.Net;
	using System.Web;
	using DotNetOpenAuth.ApplicationBlock;
	using DotNetOpenAuth.ApplicationBlock.Facebook;
	using DotNetOpenAuth.OAuth2;

	public partial class Facebook : System.Web.UI.Page {
		private static readonly FacebookClient client = new FacebookClient {
			ClientIdentifier = ConfigurationManager.AppSettings["facebookAppID"],
			ClientSecret = ConfigurationManager.AppSettings["facebookAppSecret"],
		};

		protected void Page_Load(object sender, EventArgs e) {
			IAuthorizationState authorization = client.ProcessUserAuthorization();
			if (authorization == null) {
				// Kick off authorization request
				client.RequestUserAuthorization();
			} else {
				var request = WebRequest.Create("https://graph.facebook.com/me?access_token=" + Uri.EscapeDataString(authorization.AccessToken));
				using (var response = request.GetResponse()) {
					using (var responseStream = response.GetResponseStream()) {
						var graph = FacebookGraph.Deserialize(responseStream);
						this.nameLabel.Text = HttpUtility.HtmlEncode(graph.Name);
					}
				}
			}
		}
	}
}