Advertisement
Guest User

Untitled

a guest
Jan 25th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. require '../src/Instagram.php';
  3. /////// CONFIG ///////
  4. $username = '';
  5. $password = '';
  6. $debug = false;
  7. $photo = ''; // path to the photo
  8. $caption = null; // caption
  9. //////////////////////
  10. $insta = new Instagram($username, $password, $debug);
  11.  
  12. try{
  13. $instaId = '1435464203242425768_3770950408'; //Like this post Id
  14. $reply = $insta->deleteMedia($instaId);
  15. }catch(Exception $g){
  16. $g->getMessage();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement