wp-content/plugins
directory.To get Facebook Developer Access Token, register at developers.facebook.com and create new App. Simply go to https://smashballoon.com/custom-facebook-feed/access-token/ and follow instructions.
Go facebook page from you want get username, example https://www.facebook.com/happysadpl/?fref=nf In that case username is happysadpl xxxxxx refers to the Facebook user's name: http://facebook.com/xxxxxxx/?otherCharacters
Paste that URL into browser https://graph.facebook.com/XXXXXX?access_token=YYYYY and replace XXXXXX with Facebook User Name, YYYYYY with your access_token You will get json Response with id.
Go to the facebook event from which you want to get an ID. Get the URL from the webbrowser. xxxxxx refers to the event id: https://www.facebook.com/events/xxxxxx/ Example https://www.facebook.com/events/923003774401481/ In that case fb_event_id=923003774401481
That is: cURL Error # 60: SSL certificate problem: unable to get local issuer certificate Follow this link: http://curl.haxx.se/ca/cacert.pem Copy the entire page and save it in a: "cacert.pem". Then in your php.ini file insert or edit the following line: curl.cainfo = "[pathtothisfile]\cacert.pem" example curl.cainfo = "c:\xampp\cacert.pem"
Sample below is generated from plugin. Just replace XXXXX with your token. Place that link into browser. If the token is valid you will get data from facebook. You can modify this url. 463776883765579 is user id. Sice and until are timestamps. https://graph.facebook.com/463776883765579/events/attending/?fields=id,name,description,place,timezone,start_time,cover&access_token=XXXXXXXXXXXXXXXXXXX&since=1388534400&until=1468972800
Try to deactivate other plugins. It may be some sort of collision.
If you dont need full place addres try to replace word 'place' with 'location' in fb-display-events-shortcode.php Replace $fields="id,name,description,place,timezone,start_time,cover"; with $fields="id,name,description,location,timezone,start_time,cover"; or $fields="id,name,description,timezone,start_time,cover";