Skip to content

Commit

Permalink
Merge d3b13eb into f392e3c
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitridisko committed Apr 5, 2015
2 parents f392e3c + d3b13eb commit fb9aefc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function send($url)
curl_setopt($ch, CURLOPT_URL, $url . '&' . $this->authenticationService->getAuthenticationUrlParams());
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);

Expand All @@ -60,4 +61,4 @@ public function send($url)

return $body;
}
}
}

0 comments on commit fb9aefc

Please sign in to comment.