We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Mac OSX 10.9.5 a call to the API gives an SSL error
MessageBird\Exceptions\HttpException: SSL certificate problem: unable to get local issuer certificate
I did not find out why the MessageBird Cert is not trusted. But the error does not seem to occur on other os (linux etc)
One can switch off verification in Development by using this hack in vendor/messagebird/php-rest-api/src/MessageBird/Common/HttpClient.php:106
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
Maybe it is possible to add a function to skip SSL verification in the high level API?
The text was updated successfully, but these errors were encountered:
This issue is commonly caused by a CA certificate nog being present on the system that is making the request. You'll find the certificate that is needed here https://www.digicert.com/CACerts/DigiCertSHA2SecureServerCA.crt.
Sorry, something went wrong.
Merge pull request #3 from sotoz/chat_api_integration
c862e28
Fixed examples
No branches or pull requests
On Mac OSX 10.9.5 a call to the API gives an SSL error
I did not find out why the MessageBird Cert is not trusted. But the error does not seem to occur on other os (linux etc)
One can switch off verification in Development by using this hack in vendor/messagebird/php-rest-api/src/MessageBird/Common/HttpClient.php:106
Maybe it is possible to add a function to skip SSL verification in the high level API?
The text was updated successfully, but these errors were encountered: