반응형
cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.ht
...
뭐 이런 에러가나오는데
ssl 인증서를 검사했는데 안나와서 연결이 잘안된다는 그런 뜻이다
혹시 laravel 에서 get 이나 post api 를 보내는 데 이 에러 가 계속 뜬다면
withOptions 함수를 사용해 보자
예제,
$streamId = $request->input('streamId');
$streamName = $request->input('streamName');
$url = 'www.example.com'
$response = Http::withOptions([
'Content-Type' => 'application/json',
'verify' => false, // SSL 인증서 검증 비활성화
'headers' => [
'Accept' => 'application/json',
],
])->post($url, [
'streamId' => $streamId,
'name' => $streamName,
]);
반응형
'이과 > laravel 자료' 카테고리의 다른 글
Object 를 저장후 json 으로 가져오기. (4) | 2022.11.29 |
---|---|
[LARAVEL] Column not found: 1054 Unknown column 에러 (2) | 2022.09.01 |
[LARAVEL] undefined method App\Models\FREE::links() (1) | 2022.08.23 |
[LARAVEL] 데이터 migration 명령어 (0) | 2022.08.17 |
[Laravel] 페이지네이션 에러 (0) | 2022.08.17 |
댓글