Pretty much as the title says, I have a wp7 app that when deployed and debugged on a WP7 device (lumia 800) I get a MethodAccessException when using the Facbook c# SDK but deploy and debug on a WP8 device (lumia 920) it works fine. Here is where the error occoucrs
private Uri GetURLLogin()
{
var fb = FacebookClient();
return fb.GetLoginUrl(
new {
client_id = "blahblah",
redirect_uri = "http://www.facebook.com/connect/login_success.html",
response_type = "token",
display = "popup",
scope = "user_birthday, email"
}); // Error occurs here
}