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.

It seems I am unable to retrive the events from a Facebook page. I have done this with photo albums (from the same page) and it works excellent. After I load the API and everything I use this function to get the events and display them:

function getAlbums() {
        FB.api('/___PAGE___/events', function (resp) {
            if (resp.data !== undefined) {
                for (var i = 0, l = resp.data.length; i < l; i++) {
                    var event = resp.data[i];
                    // process events here...
                }
            }
            else 
            // no events handle             
        });
    }

It goes straight to the handle for 0 events, meaning this is true: resp.data == undefined. So I am not getting any data from the Facebook. Couldn't find any solutions to it as other mostly came accross PHP and FQL, which I cannot use here. I eed to be able to display events no matter if the user is logged in or not.

Help is greatly appreciated!

share|improve this question
What is the page you are trying to retrieve events from? Are there any age or geographic restrictions on this page? Can you get a list of events using the Graph API explorer? – cpilko Oct 31 '12 at 15:22
Well for this page "AdHocMedieval" the only restriction is [Age 13+]. I haven't tried it out on the Graph API Explorer yet. – radu.luchian Oct 31 '12 at 17:15
1  
You aren't getting any events because there aren't any future events for this page. For some reason, past events that ended more than 2 weeks ago aren't accessible via the API or FQL. They remain visible via Facebook though. – cpilko Oct 31 '12 at 17:31

1 Answer

As @cpilko has mentioned, there is this bug due to which your past events are not retrieved via the Graph API. Only the future events are retrieved. You can too subscribe to the same, bug, so as to keep yourself informed if it is fixed.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.