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 developing a window app where it can get all my Facebook profile wall posts and display it on the list box. I downloaded the codes from http://www.youtube.com/watch?v=5lC7Q2Z2yik but my Facebook wall posts are still not displaying. I can post on my wall through my application, my profile picture and friends are successfully displayed. is there anything I forgot to change/add? any help would be greatly appreciated!

private void getMyWallData()
    {
        apiService.AccessToken = myToken.Default.token;

        JSONObject myWallFeed = apiService.Get("/me/feed");
        var wallData = myWallFeed.Dictionary["data"];

        List<JSONObject> myFeeds = wallData.Array.ToList<JSONObject>();

        foreach (var p in myFeeds)
        {

            try
            {
                if (p.Dictionary.ContainsKey("message"))
                {
                    Console.WriteLine(p.Dictionary["message"].String + " " + p.Dictionary["created_time"].String);
                    listBoxMyWall.Items.Add(p.Dictionary["message"].String);
                    listBoxMyWall.Items.Add("");
                }

                if (p.Dictionary.ContainsKey("comments"))
                {
                    listBoxMyWall.Items.Add("   " + p.Dictionary["comments"].Dictionary["data"].Array[0].Dictionary["from"].Dictionary["name"].String + " " + p.Dictionary["comments"].Dictionary["data"].Array[0].Dictionary["message"].String);
                    listBoxMyWall.Items.Add("");
                }


            }
            catch (KeyNotFoundException ex)
            {
                MessageBox.Show(ex.Message);

            }

        }


    }
share|improve this question
not sure what i did but now my wall feed can appear however I got the " the given key was not present in the dictionary " pop out message. – SRA Dec 12 '12 at 7:45

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.