PHP - Guzzle \ Http \ Exception \ CurlException - Craft CMS

时间:2018-05-16 04:25:12

标签: php curl eventbrite craftcms

尝试连接到EventBrite API时,我在登台服务器上遇到CURL错误,尽管本地和生产服务器连接正常:

  

[curl] 6:无法解析主持人:www.eventbriteapi.com;名称或服务未知[url] https://www.eventbriteapi.com/v3/users/me/owned_events/?status=live%2Cstarted&order_by=start_asc&expand=category%2Cvenue%2Csubcategory%2Cformat%2Corganizer

我们在登台服务器上检查了curl命令,该命令也正常运行。知道如何解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

检查您的卷曲网址

[url] https://www.eventbriteapi.com/v3/users/me/owned_events/?status=live%2Cstarted&order_by=start_asc&expand=category%2Cvenue%2Csubcategory%2Cformat%2Corganizer

将此更改为

[url] https://www.eventbriteapi.com/v3/users/me/owned_events?status=live%2Cstarted&order_by=start_asc&expand=category%2Cvenue%2Csubcategory%2Cformat%2Corganizer

删除/在own_events之后

答案 1 :(得分:0)

事实证明这是一个php-fpm问题 - 我发现了这篇文章CURL and HTTPS, "Cannot resolve host"

重启php-fpm似乎能够解决问题。