我有一个php脚本,可以使用批量订阅将我的订阅者从我的wordpress用户列表更新到Mailchimp。 (https://apidocs.mailchimp.com/api/2.0/lists/batch-subscribe.php)
当我提交大约400条记录时,一切正常。添加所有记录,我从API返回添加记录的数量等
如果我提交大约600或更多(我有大约730个订阅者),所有记录都会添加到Mailchimp,但API返回FALSE。我用=== false仔细检查了它,它是假的。我没有错误 - 它只返回false(但所有记录都添加到Mailchimp)。
Mailchimp说"最大批量大小根据每条记录中的数据量而有所不同,但根据您的经验,您应将其限制为5k-10k记录。" (https://apidocs.mailchimp.com/api/2.0/lists/batch-subscribe.php)。
我无处接近,每条记录都被添加到mailchimp列表中。我只是没有从API获得回报。
我已将超时值增加到5分钟。我也转而使用不同的记录,怀疑我可能记录了一些导致它变得混乱的记录,但它对不同的记录有相同的行为。
我使用DrewM库与Mailchimp API 2.0版进行交互。我仔细检查以确保DrewM正在使用帖子作为请求,它确实如此。 (https://github.com/drewm/mailchimp-api/)
任何想法导致了什么?
以下是代码:
function mailchimpdailyupdate () {
set_time_limit(300);
$api = get_mc_api();
$mcListId = get_mc_mailing_list();
$MailChimp = new \Drewm\MailChimp($api);
...
foreach ( $blogusers as $user ) {
$userinfo = get_userdata( $user->ID );
$location = ...//code to get location
$merge_vars = array(
'FNAME'=> $userinfo->first_name,
'LNAME'=> $userinfo->last_name,
'MMERGE3'=> $userinfo->user_login, //username
'MMERGE6'=> $location //location
);
$batch[] = array(
'email' => array('email' => $user->user_email),
'merge_vars' => $merge_vars
);
} //end foreach
//mailchimp call
$retval = $MailChimp->call('lists/batch-subscribe', array(
'id' => $mcListId, // your mailchimp list id here
'batch' => $batch,
'update_existing' => true
)
);
if ($retval === false) {
echo "Mailchimp API returned false";
}
echo 'Added: ' . $retval['add_count'] . "<br/>";
echo 'Updated: ' . $retval['update_count'] . "<br/>";
echo 'Errors: ' . $retval['error_count'] . "<br/>";
}
答案 0 :(得分:1)
在Mailchimp支持的帮助下,我找到并解决了问题。
问题实际上是在DrewM包装器中。 标题的内容长度部分显然在长时间调用时无法正常工作。我删除它,一切都开始正常。
DrewM代码的原始部分(不工作):
$result = file_get_contents($url, null, stream_context_create(array(
'http' => array(
'protocol_version' => 1.1,
'user_agent' => 'PHP-MCAPI/2.0',
'method' => 'POST',
'header' => "Content-type: application/json\r\n".
"Connection: close\r\n" .
"Content-length: " . strlen($json_data) . "\r\n",
'content' => $json_data,
),
)));
更新的代码部分(正常工作):
$result = file_get_contents($url, null, stream_context_create(array(
'http' => array(
'protocol_version' => 1.1,
'user_agent' => 'PHP-MCAPI/2.0',
'method' => 'POST',
'header' => "Content-type: application/json\r\n".
"Connection: close\r\n",
'content' => $json_data,
),
)));