728x90
cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://oauth2.googleapis.com/token
구글 인증 API 연동 중에 위와 같은 에러가 발생했다.
1. cacert.pem 인증 파일 다운로드
https://curl.haxx.se/ca/cacert.pem 여기 주소에서 파일을 다운받아 C드라이브 경로에 넣었다.
2. php.ini 파일 수정
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
curl.cainfo = "C:\cacert.pem"
위와 같이 해당 설정의 주석을 해제하고 파일 경로를 입력했다.
그리고 웹서버를 재시작 해 주면 정상적으로 작동하는 것을 확인할 수 있다.
728x90
'Develop > PHP' 카테고리의 다른 글
[Solved] command not found: laravel (0) | 2022.09.04 |
---|---|
[Solved] docker: Error response from daemon: Head "https://registry-1.docker.io/v2/laravelsail/php81-composer/manifests/latest": unauthorized: incorrect username or password. (0) | 2022.08.09 |
Google Cloud API In Laravel(PHP) (0) | 2022.06.30 |
PHP 소수점 나머지가 나오지 않는 이유 (0) | 2022.06.20 |
Laravel 메일 발송 (0) | 2022.04.01 |
댓글