Advertisement
Guest User

Untitled

a guest
Mar 17th, 2016
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. $ch = curl_init();
  3. curl_setopt($ch,CURLOPT_URL,'https://www.instagram.com/accounts/login/ajax/');
  4. curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
  5. curl_setopt($ch,CURLOPT_POST,1);
  6. curl_setopt($ch,CURLOPT_COOKIEFILE,'cookie-test.txt');
  7. curl_setopt($ch,CURLOPT_COOKIEJAR,'cookie-test.txt');
  8. curl_setopt($ch,CURLOPT_POSTFIELDS,'username=tama123&password=123tama');
  9. $result = curl_exec($ch);
  10. curl_close($ch);
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement