Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Created October 1, 2012 13:35
Show Gist options
  • Save prabirshrestha/3811836 to your computer and use it in GitHub Desktop.
Save prabirshrestha/3811836 to your computer and use it in GitHub Desktop.
public class User
{
public string id { get; set; }
public string name { get; set; }
public Location location { get; set; }
}
public class Location
{
public string id { get; set; }
public string name { get; set; }
}
var fb = new FacebookClient("access_token");
var result = fb.Get<User>("me");
if(result.location != null) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment