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 having issues figuring out how to go about getting permissions to post to a facebook user's wall using the .net facebook sdk. I want to be able to automatically post to wall when the user adds certain things to their profile on my site. The posts will contain text, along with either an image or a video. I have looked all around online and have tried several solutions but have not been able to get one to work yet. It is my understanding that these permissions would be asked for during OAuth. Any help would be greatly appreciated, I have been stuck on this for days now. Thanks in advance!

My OAuth Code so far:

  public ActionResult OAuth(string code, string state)
  {
     FacebookOAuthResult oauthResult;

     if (FacebookOAuthResult.TryParse(Request.Url, out oauthResult))
     {
        if (oauthResult.IsSuccess)
        {
           string currentUserId = "";
           var oAuthClient = new FacebookOAuthClient(FacebookApplication.Current);
           oAuthClient.RedirectUri = new Uri(redirectUrl);
           dynamic tokenResult = oAuthClient.ExchangeCodeForAccessToken(code);
           string accessToken = tokenResult.access_token;

           DateTime expiresOn = DateTime.MaxValue;

           if (tokenResult.ContainsKey("expires"))
           {
              DateTimeConvertor.FromUnixTime(tokenResult.expires);
           }

           FacebookClient fbClient = new FacebookClient(accessToken);

           dynamic me = fbClient.Get("me?fields=id,username,name,first_name,middle_name,last_name");
           long facebookId = Convert.ToInt64(me.id);

           FacebookUser facebookUser = FacebookQueries.FindFacebookUser(facebookId);

           if (facebookUser != null)
           {
              currentUserId = facebookUser.UserID.ToString();
              if ((string)me.username != null)
              {
                 facebookUser.User.Nickname = (string)me.username;
              }

              facebookUser.Name = (string)me.name;
              facebookUser.Expires = expiresOn;
              facebookUser.AccessToken = accessToken;
              ugdb.SaveChanges();

              ControllerContext.HttpContext.Session["_UserName"] = facebookUser.Name;
              ControllerContext.HttpContext.Session["_UserID"] = currentUserId;
              ControllerContext.HttpContext.Session["_Nickname"] = facebookUser.User.Nickname;
              ControllerContext.HttpContext.Session["_UserAuthMethod"] = "f";
              HttpContext.Session["_CollectionCount"] = facebookUser.User.UGDBUser_OwnedGame.Count;
              HttpContext.Session["_ReviewCount"] = facebookUser.User.UserReviews.Count;
              HttpContext.Session["_FavoriteCount"] = facebookUser.User.FavoriteGames.Count + facebookUser.User.Pictures.Count + facebookUser.User.Videos.Count;
           }
           else
           {
              FacebookUser currentFacebookUser = new FacebookUser();
              User user = new User();
              user.UserID = Guid.NewGuid();
              currentUserId = user.UserID.ToString();
              if ((string)me.username != null)
              {
                 user.Nickname = (string)me.username;
              }
              else
              {
                 char letter1 = 'A';
                 char letter2 = 'A';
                 char letter3 = 'A';
                 if ((string)me.first_name != null && !(me.first_name.ToCharArray()[0].Equals(' ')))
                 {
                    letter1 = me.first_name.ToCharArray()[0];
                 }
                 if ((string)me.middle_name != null && !(me.middle_name.ToCharArray()[0].Equals(' ')))
                 {
                    letter2 = me.middle_name.ToCharArray()[0];
                 }
                 if ((string)me.first_name != null && !(me.last_name.ToCharArray()[0].Equals(' ')))
                 {
                    letter3 = me.last_name.ToCharArray()[0];
                 }
                 string temp = letter1.ToString() + letter2.ToString() + letter3.ToString() + facebookId.ToString();
                 user.Nickname = temp.ToString();
              }
              user.AuthMethod = "f";
              ugdb.UGDBUsers.Add(user);
              currentFacebookUser.UserID = user.UserID;
              currentFacebookUser.FacebookUserID = facebookId;
              currentFacebookUser.AccessToken = accessToken;
              currentFacebookUser.Expires = expiresOn;
              currentFacebookUser.Name = (string)me.name;

              ugdb.FacebookUsers.Add(currentFacebookUser);
              ugdb.SaveChanges();
              ControllerContext.HttpContext.Session["_UserName"] = currentFacebookUser.Name;
              ControllerContext.HttpContext.Session["_UserID"] = currentFacebookUser.UserID;
              ControllerContext.HttpContext.Session["_Nickname"] = user.Nickname;
              ControllerContext.HttpContext.Session["_UserAuthMethod"] = "f";
           }

           FormsAuthentication.SetAuthCookie((string)currentUserId, false);

           // prevent open redirection attack by checking if the url is local.
           if (Url.IsLocalUrl(state))
           {
              return Redirect(state);
           }
           else
           {
              return RedirectToAction("Index", "Home");
           }
        }
     }

     return RedirectToAction("Index", "Home");
  }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.