From 6222b1971fa64493f9211062db7e79dc3bb81d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=E5=8F=A3?= Date: Sat, 10 Dec 2022 14:50:06 +0100 Subject: [PATCH] Update http_connector.cpp --- connections/http/http_connector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connections/http/http_connector.cpp b/connections/http/http_connector.cpp index 222287a..0ffcfa2 100644 --- a/connections/http/http_connector.cpp +++ b/connections/http/http_connector.cpp @@ -25,7 +25,7 @@ namespace nsfq_http { /* Header definition. TODO: cookie should be handled safely? */ m_slist1 = NULL; - m_slist1 = curl_slist_append(m_slist1 , "Cookie: holosesh=s%3AxmS8xBlQk4kH_rXQOaNjHk_3OuaBDsfA.M0yi%2BZmkiq%2BAmJBRj%2FNg9S%2BaSQpsfHRJcEeYVHLiKXg"); + m_slist1 = curl_slist_append(m_slist1 , "Cookie: holosesh=s%3aSQpsfHRJcEeYVHLiKXg"); m_slist1 = curl_slist_append(m_slist1, "referer : https://nasfaq.biz/market"); curl_easy_setopt(m_hdl, CURLOPT_HTTPHEADER, m_slist1); }