I gather event attendees for facebook events. Until yesterday, I received the due number of participants in the event. But unexpectedly, counters have the following problems:
For many plans for each subsequent request, I get a random number of members. Weird question. It seems facebook servers are not synced properly or something like that.
Previously, for the same query string (see below), I was getting the correct counts. But now the score is much smaller. It seems that at least for a few events now they only send members that are associated with our application (we use the facebook connection).
Example: for the following query, I am currently getting "31" members. But there are more event page counters.
FQL: FB.Facebook.apiClient.fql_query('SELECT uid, eid, rsvp_status FROM event_member WHERE eid=336671213618', function(result, error){alert(result.length);});
Event page: http:
Are there any recent changes to the facebook API or policies?
Thanks in advance.
source
share