Pregunta

Estoy creando una aplicación para hacer algunas cosas diferentes en un sitio web en la sección registrada.

Para hacer esto, debo mantener una sola sesión de cookies continua para todas las solicitudes que hago.

Hasta ahora, me he conectado con éxito al sitio web a través de httpwebrequest y la respuesta lo ha confirmado, sin embargo, no he podido reutilizar la cookie.

He leído por todas partes y he encontrado temas que indican cómo usar una cookie dentro de la misma función o clase, pero necesito la capacidad de usar la cookie en múltiples funciones diferentes.

Mi primer pensamiento fue intentar devolver el contenedor de cookies desde la función de inicio de sesión inicial y luego pasarlo como un parámetro a cada función posterior, pero no pude ponerlo en marcha.

¿Alguien puede sugerir un método mejor o una forma en que pueda lograr esto?

¿Fue útil?

Solución

Finalmente encontré la solución yo mismo después de leer mucho en línea. Parece que la razón por la que esto no funcionó la primera vez que probé fue debido a otras configuraciones que había configurado mal.

Entonces, para cualquier otra persona que pueda encontrar el mismo problema, espero que esto ayude:

public const string userAgent = "Mozilla/5.0 (Windows NT 6.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1";
public CookieContainer cookieJar;

private void Login_Click(object sender, EventArgs e)
{
    cookieJar = Login();
}

private CookieContainer Login()
{
    string username = txtUsername.Text;
    string password = txtPassword.Text;

    // Create a request using the provied URL. 
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(loginPageURL);

    // Set the Method property of the request to POST.
    request.Method = "POST";

    // Set the Cookiecontainer
    CookieContainer cookieJar = new CookieContainer();
    request.CookieContainer = cookieJar;

    // Create POST data and convert it to a byte array.
    string postData = "username=" + username + "&password=" + password;
    byte[] byteArray = Encoding.UTF8.GetBytes (postData);

    // Set the ContentType property of the WebRequest.
    request.ContentType = "application/x-www-form-urlencoded";

    // Set the User Agent
    request.UserAgent = userAgent;

    // Set the ContentLength property of the WebRequest.
    request.ContentLength = byteArray.Length;

    // Get the request stream.
    Stream dataStream = request.GetRequestStream ();

    // Write the data to the request stream.
    dataStream.Write (byteArray, 0, byteArray.Length);

    // Close the Stream object.
    dataStream.Close ();

    // Get the response.
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();

    // Get the stream containing content returned by the server.
    dataStream = response.GetResponseStream ();

    // Open the stream using a StreamReader for easy access.
    StreamReader reader = new StreamReader (dataStream);

    // Read the content.
    string responseFromServer = reader.ReadToEnd ();

    string cookie = cookieJar.GetCookieHeader(request.RequestUri);

    // Clean up the streams.
    reader.Close();
    dataStream.Close();
    response.Close();

    return cookieJar;
}

private void viewPage(CookieContainer cookieJar, string pageURL)
{ 
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(pageURL);

    // Set the ContentType property of the WebRequest.
    request.ContentType = "application/x-www-form-urlencoded";

    // Set the Method property of the request to POST.
    request.Method = "POST";

    // Set the User Agent
    request.UserAgent = userAgent;

    // Put session back into CookieContainer
    request.CookieContainer = cookieJar;

    // Get the request stream.
    Stream dataStream = request.GetRequestStream();

    // Close the Stream object.
    dataStream.Close();

    // Get the response.
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();

    // Get the stream containing content returned by the server.
    dataStream = response.GetResponseStream();

    // Open the stream using a StreamReader for easy access.
    StreamReader reader = new StreamReader(dataStream);

    // Read the content.
    string responseFromServer = reader.ReadToEnd();
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top