Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/06/2013, 17:54
Avatar de alberto510a
alberto510a
 
Fecha de Ingreso: abril-2013
Mensajes: 351
Antigüedad: 11 años
Puntos: 35
Exclamación Iniciar sesión con cURL

Hola a todos, me gustaría saber como puedo llegar a hacer un inicio de sesión con cURL ya que lo necesito hacer para el admin de Prestashop y no consigo hacerlo, no veo ninguna guía que me llegue a conseguir explicar lo que necesito si alguien pudiera decirme los curl_setopt que debo poner se lo agradecería mucho. Esto es lo que había puesto:

Código PHP:
Ver original
  1. $input = array();
  2.     $input['email'] = "";
  3.     $input['passwd'] = "";
  4.  
  5.     $handler = curl_init('');
  6.    
  7.     curl_setopt($handler, CURLOPT_RETURNTRANSFER, true);
  8.     curl_setopt($handler, CURLOPT_FOLLOWLOCATION, true);
  9.     curl_setopt($handler, CURLOPT_COOKIESESSION, true);
  10.     curl_setopt($handler, CURLOPT_POST, true);
  11.     curl_setopt($handler, CURLOPT_POSTFIELDS, $input);
  12.  
  13.     $response = curl_exec($handler);
  14.     curl_close($handler);

Gracias por leerme y saludos!
__________________
No hay preguntas tontas, sino tontos que no preguntan.