Skip to content

Instantly share code, notes, and snippets.

@caionorder
Created February 2, 2016 00:18
Show Gist options
  • Save caionorder/c1c06f836fa5efb2a845 to your computer and use it in GitHub Desktop.
Save caionorder/c1c06f836fa5efb2a845 to your computer and use it in GitHub Desktop.
<?php
$fanPageId = "607690675909650";
$token = "seutoken";
$url = "https://graph.facebook.com/v2.1/{$fanPageId}/posts?access_token={$token}&fields=message,picture,link&limit=".$_GET['q'];
$contents = file_get_contents($url);
$contents = str_replace('v\/t1.0-9\/p130x130\/','p\/t1.0-9\/s\/', $contents);
header('Content-Type: application/json');
echo "fbCallback(".$contents.");";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment