Domanda

Ho creato un semplice codice per accedere al mio sito web.

private function request($url, $reset_cookies, $post_data)
  {

    $options = array(
      CURLOPT_URL               => $url,
      CURLOPT_RETURNTRANSFER    => 1,
      CURLOPT_HEADER            => 0,
      CURLOPT_FAILONERROR       => 1,
      CURLOPT_USERAGENT         => $this->user_agent,
      CURLOPT_CONNECTTIMEOUT    => 30,
      CURLOPT_TIMEOUT           => 30,
      CURLOPT_SSL_VERIFYPEER    => 0,   
      CURLOPT_FOLLOWLOCATION    => 1,
      CURLOPT_MAXREDIRS         => 10,
      CURLOPT_AUTOREFERER       => 1,
      CURLOPT_COOKIESESSION     => $reset_cookies ? 1 : 0,
      CURLOPT_COOKIEJAR         => $this->session_id,
      CURLOPT_COOKIEFILE        => $this->session_id,
    );

    // Add POST data
    if (isset($post_data))
    {
      $options[CURLOPT_CUSTOMREQUEST] = 'POST';
      $options[CURLOPT_POST]          = 1;
      $options[CURLOPT_POSTFIELDS]    = http_build_query($post_data);
    }

    // Attach options
    curl_setopt_array($this->curl, $options);

    // Execute the request and read the response
    $content = curl_exec($this->curl);

    // Handle any error
    if (curl_errno($this->curl)) throw new Exception(curl_error($this->curl));

    return $content;
  }

Quindi, in pratica, un passaggio normale per il mio sistema di accesso sarebbe:

  1. Invia una richiesta GET per recuperare il token di sicurezza e inizializzare una sessione cookie.(FATTO e FUNZIONANTE)

    $security_token = $this->browser->request('https://mysite.com/login', true, null);
    
  2. Invia una richiesta POST con il nome utente, la password e il token di sicurezza.

    $postdata = array(
        'login' => $login,
        'password' => $password,
        '__RequestVerificationToken' => $security_token,
    );
    $login_page = $this->browser->request('https://mysite.com/login', false, $postdata);
    

Al passaggio n. 2, ho ricevuto un errore 411 che indicava che la lunghezza del contenuto è obbligatoria.

Ho sbagliato qualcosa o ho dimenticato di impostare un parametro?

È stato utile?

Soluzione

La soluzione era rimuovere questa linea

$options[CURLOPT_CUSTOMREQUEST] = 'POST';
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top