我试图保存订阅者的记录以在php中邮寄黑猩猩,但我收到了这个我不明白的错误:
fsockopen():php_network_getaddresses:getaddrinfo failed:没有这样的主机。
我使用的是MCAPI类1.3版
这是我保存的代码:
$apikey='d9750fc48519551e22e789c1gthy050a5-fd7'; // Enter your API key
$api = new MCAPI($apikey);
$retval = $api->lists();
$listid='d395e7afr4'; // Enter list Id here
$fname = $this->stepdata['yourName'];
$lname = $this->stepdata['yourName'];
$email = $this->stepdata['yourEmail'];
// By default this sends a confirmation email - you will not see new members
// until the link contained in it is clicked!
$merge_vars = array('FNAME' => $fname, 'LNAME' => $lname, 'EMAIL' => $email);
//listSubscribe'=>array("id","email_address","merge_vars","email_type","double_optin","update_existing","replace_interests","send_welcome")
if($api->listSubscribe($listid, $email, $merge_vars, $email_type='html', $double_optin=false, $update_existing=false, $replace_interests=false, $send_welcome=true ) === true) {
}
这是错误指向MCAPI类
的位置 ob_start();
if ($this->secure){
$sock = fsockopen("ssl://".$host, 443, $errno, $errstr, 30);
} else {
$sock = fsockopen($host, 80, $errno, $errstr, 30);
}
由于
答案 0 :(得分:0)
如果这是一个真正的API密钥,您绝对应该禁用API密钥并生成一个新密钥,但在这种情况下,这实际上有助于回答这个问题。
MailChimp库使用API密钥的第二部分来确定which datacenter to connect to。在这种情况下,图书馆会将其解释为' fd7',并尝试连接到fd7.api.mailchimp.com
,这不是有效的MailChimp数据中心。
我从您的信息中心重新复制您的API密钥,并确保最后一部分看起来像是' usX'其中X是1-10之间的某个数字。