From 2bb9480555cf1b7d871fcca2f6afddbab5e58904 Mon Sep 17 00:00:00 2001 From: triatic <42704418+triatic@users.noreply.github.com> Date: Fri, 26 Jul 2019 09:36:59 +0100 Subject: [PATCH] [TwitterBridge] Get cookies before sending request (#1232) * [TwitterBridge] Get cookies before sending request Twitter now requires cookies to be set before requesting a page. This will fetch the cookies and send them to `getSimpleHTMLDOM()`. * Formatting fixes --- bridges/TwitterBridge.php | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/bridges/TwitterBridge.php b/bridges/TwitterBridge.php index 76ca5305..e8b9d944 100644 --- a/bridges/TwitterBridge.php +++ b/bridges/TwitterBridge.php @@ -170,8 +170,10 @@ EOD public function collectData(){ $html = ''; + $page = $this->getURI(); + $cookies = $this->getCookies($page); - $html = getSimpleHTMLDOM($this->getURI()); + $html = getSimpleHTMLDOM($page, array("Cookie: $cookies")); if(!$html) { switch($this->queriedContext) { case 'By keyword or hashtag': @@ -428,4 +430,27 @@ EOD; return null; } + + private function getCookies($pageURL){ + + $ctx = stream_context_create(array( + 'http' => array( + 'follow_location' => false + ) + ) + ); + $a = file_get_contents($pageURL, 0, $ctx); + + //First request to get the cookie + $cookies = ''; + foreach($http_response_header as $hdr) { + if(stripos($hdr, 'Set-Cookie') !== false) { + $cLine = explode(':', $hdr)[1]; + $cLine = explode(';', $cLine)[0]; + $cookies .= ';' . $cLine; + } + } + + return substr($cookies, 2); + } }