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 have built a desktop application that makes use of the FB graph api enpoint /me/inbox. (also using the Facebook C# SDK 5.4.1)

As of May 31st I have noticed that the responses from this FB API are incomplete. There is missing information from each message within the reponse; The initial sender of the message (creator of the initial message in the thread) is no longer present. The following is missing

        "from": {
            "name": "....",
            "id": "..."
        },

And the "message" text is also missing. "message": ".....",

A typical (good) message looked like this: { "id": "....", "from": { "name": "....", "id": "..." }, "to": { "data": [ { "name": "...", "id": "...." }, { "name": "....", "id": "..." } ] }, "message": ".....", "updated_time": "....", "unread": 0, "unseen": 0 },

Is anyone else experiencing this issue?

thanks... John

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.