I am trying to connect to facebook using this code:
FacebookService MiFB = new FacebookService();
string MyAppId = "xxxxxxxxx"
private void button1_Click(object sender, EventArgs e)
{
MiFB.ApplicationKey = MyAppId;
MiFB.ConnectToFacebook();
}
and even I get "The given key was not found in the dictionary" on MiFB.ConnectToFacebook();
Please, can you help me?