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 Using facebook C# SDK to connect to facebook from my mvc3 application. I am able to login but not able to logout. I used bellow code for logout

var oauth = new FacebookClient();

        var logoutParameters = new Dictionary<string, object>
              {
                  { "next", "http://localhost:8691" }
              };

        var logoutUrl = oauth.GetLogoutUrl(logoutParameters);

        return Redirect(logoutUrl.ToString());

This code always redirects me to facebook home page.

share|improve this question
What is the value of logoutParameters and post te code that handles the login procedure. – Ramhound Oct 30 '12 at 13:01

2 Answers

Look at this Link, they suggest to handle all log in\log off with the javascript sdk for FB.

share|improve this answer
up vote 0 down vote accepted

I have solved it. I just passed access token in logoutParameters.

Here is my action result code.

        public ActionResult LogOut(string accessToken)
    {
        var oauth = new FacebookClient();

        var logoutParameters = new Dictionary<string, object>
              {
                 {"access_token", accessToken},
                  { "next", "http://localhost:8691" }
              };

        var logoutUrl = oauth.GetLogoutUrl(logoutParameters);

        return Redirect(logoutUrl.ToString());
    }
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.