我们的一些客户仍然使用api v1.3。 MailChimp PHP API使用包装器1.3。从过去的10天开始,由于未知原因,此操作停止了。我知道我们应该升级到api v3,但是有些客户看不到我们的电子邮件,因此我试图找出可能出问题的地方。
我正在封装正在调用其服务器的代码部分,该部分返回“ http://HTTP/1.0 302临时移动的服务器:AkamaiGHost ...”。我正在尝试获得他们的支持,但即使他们什么都不知道,如果有人可以说出任何意见,这可能是有帮助的,因此我可以在他们的支持下进一步推广。
$dc = "us1";
if (strstr($this->api_key, "-")) {
list($key, $dc) = explode("-", $this->api_key, 2);
if (!$dc)
$dc = "us1";
}
$host = $dc . "." . $this->apiUrl["host"];
$params["apikey"] = $this->api_key;
$this->errorMessage = "";
$this->errorCode = "";
$sep_changed = false;
//sigh, apparently some distribs change this to & by default
if (ini_get("arg_separator.output") != "&") {
$sep_changed = true;
$orig_sep = ini_get("arg_separator.output");
ini_set("arg_separator.output", "&");
}
$post_vars = http_build_query($params);
if ($sep_changed) {
ini_set("arg_separator.output", $orig_sep);
}
$payload = "POST " . $this->apiUrl["path"] . "?" . $this->apiUrl["query"] . "&method=" . $method . " HTTP/1.0\r\n";
$payload .= "Host: " . $host . "\r\n";
$payload .= "User-Agent: MCAPI/" . $this->version . "\r\n";
$payload .= "Content-type: application/x-www-form-urlencoded\r\n";
$payload .= "Content-length: " . strlen($post_vars) . "\r\n";
$payload .= "Connection: close \r\n\r\n";
$payload .= $post_vars;
ob_start();
if ($this->secure) {
$sock = fsockopen("ssl://" . $host, 443, $errno, $errstr, 30);
} else {
$sock = fsockopen($host, 80, $errno, $errstr, 30);
}
if (!$sock) {
$this->errorMessage = "Could not connect (ERR $errno: $errstr)";
$this->errorCode = "-99";
ob_end_clean();
return false;
}
$response = "";
fwrite($sock, $payload);
stream_set_timeout($sock, $this->timeout);
$info = stream_get_meta_data($sock);
while ((!feof($sock)) && (!$info["timed_out"])) {
$response .= fread($sock, $this->chunkSize);
$info = stream_get_meta_data($sock);
}
fclose($sock);
ob_end_clean();
var_dump($info);
此返回数组(7){[“” timed_out“] => bool(false)[” blocked“] => bool(true)[” eof“] => bool(false)[” stream_type“] =>字符串(14 )“ tcp_socket / ssl” [“ mode”] =>字符串(2)“ r +” [“ unread_bytes”] => int(0)[“ seekable”] => bool(false)}
var_dump($response);
这将返回“ http://HTTP/1.0临时移动的302服务器:AkamaiGHost内容长度:0位置:https://us8.api.mailchimp.com/1.3/?output=php&method=listSubscribe日期:2018年8月10日星期五21:51:06 GMT连接:关闭”
答案 0 :(得分:8)
对我来说,设置$this->secure = true
并没有完成任务,因为该类为 __ construct()
function __construct($apikey, $secure=false) {
$this->secure = $secure;
$this->apiUrl = parse_url("https://api.mailchimp.com/" . $this->version . "/?output=php");
$this->api_key = $apikey;
}
因此,当您仅使用API密钥$secure
实例化类时,默认情况下为false。
修复:
$api = new MCAPI($apiKey, true);
希望这对使用7年历史存储库(包括我自己)的所有人有所帮助...
答案 1 :(得分:1)
看来他们不再允许任何安全连接,这就是为什么请求被重定向并且我使用的php包装器无任何错误地无提示传递且未向Mailchimp添加电子邮件的原因。如果仅将$ this-> secure设置为true
。