- Регистрация
- 30.03.2015
- Сообщения
- 529
- Благодарностей
- 194
- Баллы
- 43
Доброго утра! Подскажите, имеется запрос:
string url = "https://m.mail.ru/cgi-bin/movemsg?form_sign="+(project.Variables["form_sign"].Value)+"&form_token="+(project.Variables["form_token"].Value)+"&id="+(project.Variables["id_massage"].Value)+"&mark=1&markmessage=6&back=/message/"+(project.Variables["id_massage"].Value);
string proxy = project.Variables["proxy"].Value;
string encoding = "UTF-8"; //Кодировка
int timeout = 10000; //Таймаут запроса
string cookies = project.Variables["cookies"].Value; //Куки
string userAgent = project.Variables["useragent"].Value; //Юзерагент
bool useRedirect = true;
int maxRedirectCount = 5;
string[] additionalHeaders = {
"Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3",
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Connection: keep-alive"}; // Дополнительные заголовки.
var response = ZennoPoster.HttpGet(url, proxy, encoding, ResponceType.HeaderAndBody, timeout, cookies, userAgent, useRedirect, maxRedirectCount, additionalHeaders);
project.Variables["get_info"].Value = response;
Как куки, вместо переменной подставить куки с контейнера? Подскажите пожалуйста...
string url = "https://m.mail.ru/cgi-bin/movemsg?form_sign="+(project.Variables["form_sign"].Value)+"&form_token="+(project.Variables["form_token"].Value)+"&id="+(project.Variables["id_massage"].Value)+"&mark=1&markmessage=6&back=/message/"+(project.Variables["id_massage"].Value);
string proxy = project.Variables["proxy"].Value;
string encoding = "UTF-8"; //Кодировка
int timeout = 10000; //Таймаут запроса
string cookies = project.Variables["cookies"].Value; //Куки
string userAgent = project.Variables["useragent"].Value; //Юзерагент
bool useRedirect = true;
int maxRedirectCount = 5;
string[] additionalHeaders = {
"Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3",
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Connection: keep-alive"}; // Дополнительные заголовки.
var response = ZennoPoster.HttpGet(url, proxy, encoding, ResponceType.HeaderAndBody, timeout, cookies, userAgent, useRedirect, maxRedirectCount, additionalHeaders);
project.Variables["get_info"].Value = response;
Как куки, вместо переменной подставить куки с контейнера? Подскажите пожалуйста...