Hellrocker

Untitled

Feb 1st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php
  2.  
  3. $graph_url = "https://graph.facebook.com/v2.3/278952135548721/posts?fields=id&limit=1&access_token=CAAGZAwVFNCKgBAANhEYok6Xh7Q7UZBeTZCUqwPDLYhRZCmNn0igI8SE339jSn2zjxCpA1JUmXHm55XKVXslhdKKoTF3b5sLsiZBVd0ylYwX3MIGOnRyzn0T2XVywwoPKP7ML9WZCqELGRuIGxoM8ia05CiUiqcbgsb4wzTuBKkvKaqb7TPt2VnPtprRZBWda4kZD&until=1485414774&__paging_token=enc_AdDX5WR36dqSFFXX0PZCIK7qwF2yFZAm1EFT2jPMAhVTEMyn4DRzyPjT6y6MjPEMwQDIP0z4L2kMp9ITLQlJVbcZCPAH0MljgrMuEvGHNFtNSxlqQZDZD";
  4. $new = json_decode(file_get_contents($graph_url), true);
  5. //var_dump($new);
  6. $latestpostid = $new['data']['0']['id'];
  7. $testpostid = file_get_contents('ids.txt', NULL, NULL, NULL, 0, 32);
  8. if($latestpostid == $testpostid) {
  9. echo "NO NEW POSTS";
  10. }
  11. else {
  12. echo "NEW POSTS";
  13. unlink("ids.txt");
  14. file_put_contents('ids.txt', $latestpostid);
  15. }
  16.  
  17.  
  18. ?>
Add Comment
Please, Sign In to add comment