Sorry, but I'm not sure I understand what you are referring to when you say "run it in device the running is like this" -- Is this a separate computer you're running it on, an embedded device (like a camera), or something else?
The issue is that the certificate validation is failing. A SSL-based client will verify that the certificate returned from the web server in a number of ways, including that the hostname for the certificate matches the hostname used in the request, the dates are valid, and the certificate was issued by a known certificate authority (CA). In order to check the last part, the client (curl/libcurl in this case) stores a set of known certificate authorities that it trusts. This error message indicates that the certificate authority which issued the certificate returned from www.google.com is not trusted by cur/ libcurl. Most likely, the cause is that you're pointing to an empty or not-well-populated list of valid certificate authorities. Please see the webpage pointed to in the error message for ways around this problem. My recommendation would be #5, which involves downloading a new CA cert bundle. I hope this helps. Cheers, -Ryan On Nov 26, 12:37 am, lanclot <[EMAIL PROTECTED]> wrote: > my request is like this : > curlhttps://www.google.com/accounts/ClientLogin\ > -d [EMAIL PROTECTED] -d Passwd=newfoundland \ > -d accountType=GOOGLE \ > -d source=Google-cURL-Example \ > -d service=lh2 > > im my fedora OS , i can accept the right Authentication > but when i cross compile the curl(i have choosed the ssl) > run it in device > the running is like this > > curl: (60) SSL certificate problem, verify that the CA cert is OK. > Details: > error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate > verify failed > More details here:http://curl.haxx.se/docs/sslcerts.html > > my email is :[EMAIL PROTECTED] > if you have some ider ,post it to me > thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
