我正在通过Nexmo软件包的短信功能。但是,我遇到了一个错误,即:
请提供Nexmo API凭据。可能组合: api_key + api_secret,api_key + signature_secret,private_key + application_id,api_key + api_secret + private_key + application_id,api_key + signature_secret + private_key + application_id

虽然我已经填充了我的.env和config/nexmo.php文件。
发布于 2018-04-06 13:13:50
我刚刚使用回购指南创建了一个新的Laravel项目,并得到了这条新的错误消息。
>cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)回购系统运行良好,而我的问题就在于此。
我的解决方案很简单,只需遵循以下链接:重新复制整个页面,并将其保存在:“http://curl.haxx.se/ca/cacert.pem”中
然后在您的php.ini文件中插入或编辑以下一行: curl.cainfo = "pathtothisfile\cacert.pem“
https://stackoverflow.com/questions/49598919
复制相似问题