You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I thought I'd write up the following issue to help anyone who encounters it too.
While trying to get the package up and running on my local machine, on calling the put() method, the following exception was being thrown:
GuzzleHttp\Exception\RequestException with message 'cURL error 60: SSL certificate problem: Invalid certificate chain (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)'
To work around the exception, in DropboxServiceProvider, I simply instantiated and passed through my own GuzzleHttp\Client dependency with verify request option set to false:
Note:Guzzle's documentation mentions disabling certificate verification (setting the verify request option to false) is insecure, and thus, should probably be used with caution.
Hope this information helps someone else down the track.
Cheers!
The text was updated successfully, but these errors were encountered:
Hi! 👋
As always, another wonderful package from Spatie.
I thought I'd write up the following issue to help anyone who encounters it too.
While trying to get the package up and running on my local machine, on calling the
put()
method, the following exception was being thrown:To work around the exception, in
DropboxServiceProvider
, I simply instantiated and passed through my ownGuzzleHttp\Client
dependency withverify
request option set tofalse
:Note: Guzzle's documentation mentions disabling certificate verification (setting the
verify
request option tofalse
) is insecure, and thus, should probably be used with caution.Hope this information helps someone else down the track.
Cheers!
The text was updated successfully, but these errors were encountered: