diff options
author | Marvin Borner | 2018-06-18 19:41:01 +0200 |
---|---|---|
committer | Marvin Borner | 2018-06-18 19:41:01 +0200 |
commit | 0e0d074f5f3ef3bc0917e4dba9eb408f63014966 (patch) | |
tree | 0e35ef26e3af991aabbdba3ddb20bbf6996f5bf3 /assets/php | |
parent | 5e22a6f8410aa084066100705951379b6cffafb9 (diff) |
Began basic enviremont
Diffstat (limited to 'assets/php')
-rw-r--r-- | assets/php/getJson.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/assets/php/getJson.php b/assets/php/getJson.php new file mode 100644 index 0000000..f4155e3 --- /dev/null +++ b/assets/php/getJson.php @@ -0,0 +1,11 @@ +<?php +$NetflixCookie = $_POST["Cookie"]; + +$ch = curl_init("https://www.netflix.com/api/shakti/7742b8c7/viewingactivity"); +curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); +curl_setopt($ch, CURLOPT_HEADER, 0); +curl_setopt($ch, CURLOPT_COOKIE, $NetflixCookie); +$NetflixJson = curl_exec($ch); +curl_close($ch); + +print_r($NetflixJson);
\ No newline at end of file |