Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
What's the error message you're receiving? Also, your accept rate is atrocious, you may want to improve that to attract others to help – Igy Mar 8 '12 at 10:10
No Error message, i'll accept when i'll got solution without solution how can i accept? – Syed Salman Raza Zaidi Mar 8 '12 at 10:50

1 Answer

If your project is configured to use the Facebook JavaScript SDK, you have to use the FacebookWebClient class to make the requests, which sets up the access token automatically.

This distinction is explained in the documentation (which is being ported to the project's new site), in the examples about how to start you project: [http://facebooksdk.codeplex.com/wikipage?title=Getting%20Started%20with%20an%20ASP.NET%20MVC%203%20Website%20%28With%20Javascript%20SDK%29]

public ActionResult Profile()
{
    var client = new FacebookWebClient();

    dynamic me = client.Get("me");
    ViewBag.Name = me.name;
    ViewBag.Id = me.id;

    return View();
}

Note
It is important to note that we are using FacebookWebClient in the above code and not FacebookClient. FacebookWebClient inherits from FacebookClient. The only difference between the two is that FacebookWebClient automatically retrieves the current users access token from the session. If you use FacebookClient, you must provide the access token manually before you make an API call."

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.