aboutsummaryrefslogtreecommitdiff
path: root/assets/php
diff options
context:
space:
mode:
authorMarvin Borner2018-06-18 19:41:01 +0200
committerMarvin Borner2018-06-18 19:41:01 +0200
commit0e0d074f5f3ef3bc0917e4dba9eb408f63014966 (patch)
tree0e35ef26e3af991aabbdba3ddb20bbf6996f5bf3 /assets/php
parent5e22a6f8410aa084066100705951379b6cffafb9 (diff)
Began basic enviremont
Diffstat (limited to 'assets/php')
-rw-r--r--assets/php/getJson.php11
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