Hola, estoy intentado loguearme a través de un formulario post pero con Curl no lo consigo, no sé si estaré haciendo algo mal.
Necesito ayuda, realmente me da igual el lenguaje que se utilice pero q sea efectivo.
$url="https://----/loginPost/";
$username ="[email protected]";
$password = "---";
$postinfo = "email=".$username."&password=".$password;
$cookie_file_path = $path."/cookie.txt";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postinfo);
curl_exec($ch);
curl_setopt($ch, CURLOPT_URL, "http://--/otra direccion distinta");
$html = curl_exec($ch);
curl_close($ch);
Podéis echarme una mano?