I am developing a Facebook app that makes an API call to get a list of the user's events.
The app will use Javascript which will call the user/events edge, something like this:
FB.api(
"/{user-id}/events",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
Since the end of April, with the introduction of the login review, this functionality won't work until my app is approved...
So my question is, how can I test the app before it gets approved??
I've read as much as I can find on this, and tried setting up a test user, but can't get any answers...
Obviously I can't submit my app for approval before it is tested, but it seems I can't test it before it is approved. There must be a way!