How to set CURL options when using Kohana Request How to set CURL options when using Kohana Request curl curl

How to set CURL options when using Kohana Request


Here is more detailed example:

$request = Request::factory($some_url);$request->client()->options(array(    CURLOPT_SSL_VERIFYPEER => FALSE));


The Request_Curl class doesn't look at that config file. You'll have to use ->options() manually to set the curl params.