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 the Facebook C# SDK in my Silverlight 4 browser app to perform some requests to the Facebook Graph API. I followed the example in the SDK documentation to request the user's information (using the asynchronous method to make it work on Silverlight):

        var fb = new FacebookClient(accessToken);

        fb.GetAsync("/me");

        fb.GetCompleted += (o, ea) =>
        {
            var result = (JsonObject)ea.GetResultData();
            var name = (string)result["name"];
        };

This way I get the JsonObject without any problem and I can read all data, but when I make request to "me/feed" or "me/home" instead of "/me":

        fb.GetAsync("/me/home");

        fb.GetCompleted += (o, ea) =>
        {
            var result = (JsonObject)ea.GetResultData();
            var data = (JsonArray) result["data"];

            foreach (JsonObject post in data)
            {
                id = (string)post["id"];

            }
        };

then the JsonObject is empty and I get a exception when trying to access its elements. I successfully managed to POST a message to "me/feed", but why do I receive an empty response when making a GET request? I have set the access token in the FacebookClient I'm using to make the calls, is there something else that I'm missing?

Thanks!

share|improve this question
I forgot to mention that I also set the "read_stream" permission – Evenstar Jun 15 '11 at 11:34
Have you verified that the user in question actually has recent wall posts? You will get an empty "data" object in that case. I am sure you have checked this but just making sure. – dotnetster Jun 16 '11 at 14:33
Yes, there are several published posts in the user's wall... – Evenstar Jun 17 '11 at 7:20
I have a similar problem when requesting to "me/photos" as well: as far as I understood the result of that request should return a set of links to the photos that have been uploaded by the user, and I have set the "user_photos" permission – Evenstar Jun 17 '11 at 11:34
It is now working without any changes made, maybe it was a Facebook server issue that has been solved – Evenstar Jun 27 '11 at 13:36

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.