I have a Facebook app that shows a count of all events created by friends on Facebook. I use FQL to return the numbers. It was working fine until February 1st and I suppose it stopped working because of the Rolling changes for this month, but I haven't been able to find anything about the FQL protocol in the documentation. Here is what was working before:
$timestamp = time(); // Get current Unix time
$iso8601 = date('c', $timestamp); // Convert unix time to ISO8601
// FQL Multiquery
$fql_query = '{"allFriends":"SELECT+uid2+FROM+friend+WHERE+uid1=me()",'
.'"allEvents":"SELECT+eid+FROM+event_member+WHERE+uid+IN+(SELECT+uid2+FROM+#allFriends)+AND+start_time>=\''.$iso8601.'\'",'
.'"creators":"SELECT+creator+FROM+event+WHERE+eid+IN+(SELECT+eid+FROM+#allEvents)"}'
. '&access_token=' . $access_token;
// Get FQL through Graph API call
$fql = $facebook->api('/fql?q=' . $fql_query);
But now when the script runs I receive this exception: FacebookApiException: OAuthException: (#601) Parser error: unexpected '{' at position 0.
What should I change to fix it?
Any help would be greatly appreciated