protected void Post(object sender, EventArgs e)
{
Dictionary<string, string> data = new Dictionary<string, string>();
data.Add("link", "http://www.myboolah.com");
data.Add("description", "Deepesh ");
data.Add("picture", "https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-ash4/189358_462052443839772_1660198945_n.jpg");
data.Add("caption", "Test post ");
data.Add("name", "Test Post");
data.Add("message", txtMessage.Text);
FaceBookConnect.Post(ViewState["Code"].ToString(), "me/feed", data);
}
}
In the above piece of code, instead of "me/feed" im i have written "fanpage/feed" because i want to post to the fanpage wall, where "fanpage" is any fanpage. So problem is, every thing is working but post is not showing on that page wall like it waas working "me/feed",,, guide me please