Guten Tag,
ich versuche seit mehreren Stunden ein Login mithilfe von cURL durchzuführen.
Mein Script sieht letztendlich so aus:
Das Formular von Zalando:
pastie.org/private/m5qahkfuk7yh48zskfjwq
Code:
Alles anzeigen
Wäre für jede Hilfe dankbar! LG
ich versuche seit mehreren Stunden ein Login mithilfe von cURL durchzuführen.
Mein Script sieht letztendlich so aus:
Das Formular von Zalando:
pastie.org/private/m5qahkfuk7yh48zskfjwq
Code:
PHP-Quellcode
- [syntax="php"]<?php
- $username="MEINUSERNAME";
- $password="MEINPW";
- $url="https://www.zalando.de/login/";
- $cookie="cookie.txt";
- $postdata = "email=".$username."&password=".$password;
- $ch = curl_init();
- curl_setopt ($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_HEADER, TRUE);
- curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, TRUE);
- curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
- curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
- curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, TRUE);
- curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
- curl_setopt ($ch, CURLOPT_REFERER, $url);
- curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
- curl_setopt ($ch, CURLOPT_POST, 1);
- $result = curl_exec($ch);
- curl_close($ch);
- ?> [/syntax]
Wäre für jede Hilfe dankbar! LG