I am implementing Facebook Wall post on friends,Everything is working fine when i run my aaplication on localhost,it will post successfully but when i publish my webapplication on IIS , it'll not post any thing on facebook wall, I am using IIS 6.1(windows 7) and i am using dotnet framework 4.0, I have separate Appid and Appkey for my localhost and for publishing site, below is the code i am implementing
FacebookClient app = new FacebookClient(fbtoken);
var args = new Dictionary<string, object>();
args["message"] = "message";
args["caption"] = "This is caption!";
args["description"] = "This is description!";
args["name"] = "This is name!";
app.Post("/" + friendId + "/feed", args);
where friendID is retrieving from Facebook Friend's list, i am using Facebook C# SDK of codeplex, and fbtoken i am getting after FB login(Login is without popup) What other settings/ configuration do i need to be able to post on friend's wall after publishing my application on IIS??? Even Sandbox option is disabled in my fb app