Giulio Prina Ricotti
Giulio Prina Ricotti
Still struggling. Charts documentation doesn't mention basic things like what is the minimum set of options needed between the 40 available of a Line Chart. Library seems great but at...
The same problem arises also with getRequestToken. I guess the problem it that getAccessToken/getRequestToken are forwarded to the Consumer which isn't forwarded any http_client_options/http_client. Even setting http_client manually is ignored....
I ended up setting the httpClient globally for OAuth using `OAuth::setHttpClient()` ``` $config = array( 'adapter' => 'Zend\Http\Client\Adapter\Curl', 'curloptions' => array( CURLOPT_SSL_VERIFYHOST => false, CURLOPT_SSL_VERIFYPEER => false ), ); $httpClient...
@SteveTalbot thank you. Only drawback I see is that you have to repeat it every time it is needed and setting something global is always a source of problems.