I did run into one issue! The event images doesn’t get pulled in anymore.
Notice: Trying to get property of non-object in wp-content/plugins/eme-sync-facebook-events/eme-sync-facebook-events.php on line 236
This line is:
—————————————————
$event = $request->getGraphNode()->asArray();
if (isset($event[‘cover’]) && !empty($event[‘cover’])) {
$event[‘event_picture_url’]=$event[‘cover’]->source;
} elseif (isset($event[‘picture’]) && !empty($event[‘picture’]) && isset($event[‘picture’]->url) ) {
$event[‘event_picture_url’]=$event[‘picture’]->url;
}
—————————————————
I think it is complaining about $event[‘event_picture_url’]
and I found this little bit of info at: https://developers.facebook.com/docs/php/GraphObject/5.0.0
which says “This document refers to a feature that was removed after PHP SDK 4.0.0.”