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.

Getting the error Object reference not set to an instance of an object when I try to Post to wall.

Site.master.cs

public FacebookSession CurrentSession
{
    get { return (new CanvasAuthorizer()).Session; }
}
protected void Page_Load(object sender, EventArgs e)
{
    var auth = new CanvasAuthorizer { Perms = "email,read_stream,publish_stream,offline_access" };`

    if (auth.Authorize())
    {
        ShowFacebookContent();
    }
}
private void ShowFacebookContent()
{
    var fb = new FacebookClient(this.CurrentSession.AccessToken);
    dynamic myInfo = fb.Get("me");
    lblName.Text = myInfo.name;
    pnlHello.Visible = true;
}
}

Default.aspx.cs

SiteMaster myMasterPage;

protected void Page_Load(object sender, EventArgs e)
{
    myMasterPage = Page.Master as SiteMaster;
}
public void LinkButton1_Click(object sender, EventArgs e)
{
    var fb = new FacebookClient(myMasterPage.CurrentSession.AccessToken);

    dynamic feedparameters = new ExpandoObject();
    feedparameters.message = (message_txt.Text == null ? " " : message_txt.Text);
    feedparameters.user_message_prompt = " ";

    /*Dictionary<string, object> feedparameters = new Dictionary<string, object>();

    feedparameters.Add("message", "Testing Application");
    feedparameters.Add("user_message_prompt", "Post To Your Wall");
    feedparameters.Add("display", "iframe");*/

    dynamic result = fb.Post("me/feed", feedparameters);
}
}

The error occurs when I click the LinkButton.

Any help will be appreciated.

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.