cURL error 3: (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)
1 min readJun 4, 2020
Maybe you found any error with this description when you try to hit your api / laravel website.
cURL error 3: (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)
For fix this issue, you need to be sure that your composer itself is updated to the latest version:
composer update
If you already update to the latest version, but you still facing this issue. Please try to clear all type of caches in Artisan.
php artisan route:clear
php artisan config:clear
php artisan cache:clear
Conclusion
Somehow, there will be cache in your artisan, so make sure you already update the composer to the latest one, also always clear all type of caches before you find another error solution in Stackoverflow or Google.