我正在学习Ruby并尝试学习如何使用rest-client来进行API调用。我正在使用Foobot的API(在这里找到:https://api.foobot.io),因为它非常简单和开放。
以下是我收到的完整错误消息:
#<RestClient::SSLCertificateNotVerified: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed>
这是我的代码(当然插入了样本数据)。
这是身份验证POST请求。我能够在Postman中成功完成此请求,而无需任何其他内容,例如SSL证书。我只有我的用户名,密码和API密钥。 API文档没有提及任何有关SSL证书的内容。它只是说他们强烈建议使用HTTPS,我在这里。我做错了什么?