hi, i tried to download reports using cURL. my code looks something like this ............ $authToken = new AuthToken($email, $password, 'adwords', 'PHP Sample Code', 'GOOGLE');
// Create download URL. $url = sprintf('https://adwords.google.com/api/adwords/reportdownload? __rd=%d', $reportDefinitionId); // Create headers. $headers = array(); $headers[]= 'Authorization: GoogleLogin auth='. $authToken- >GetAuthToken(); $headers[]= 'clientEmail: ' . $clientEmail; ................. $ch = curl_init($url); curl_setopt($ch, CURLOPT_FILE, $file); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_exec($ch); .... I've set the email and password. But the problem is i get an exception that looks like this: 'AuthTokenException' with message 'Failed to get authToken. Reason: SSL certificate problem, verify that the CA cert is OK. Details: error: 14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE: please help me how to resolve it? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en