Skip to content

Instantly share code, notes, and snippets.

View ysanmiguel's full-sized avatar

ysanmiguel.com ysanmiguel

View GitHub Profile
@nick2687
nick2687 / getPageFeed.php
Last active April 10, 2018 17:07
Simple modx snippet that will pull facebook page feed data and display it using a chunk
<?php
// Facebook App id & secret
$fb_app_id = isset($fb_app_id) ? $fb_app_id : NULL;
$fb_app_secret = isset($fb_app_secret) ? $fb_app_secret : NULL;
$access_token = $fb_app_id . '|' . $fb_app_secret;
// Other options
$page_id = isset($page_id) ? $page_id : NULL ;
$chunk = isset($chunk) ? $chunk : 'getPageFeedTpl' ;