php – MailChimp API会员信息问题

前端之家收集整理的这篇文章主要介绍了php – MailChimp API会员信息问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要通过api检索所有用户信息,在我发现的文档中查找它:
http://apidocs.mailchimp.com/api/2.0/lists/member-info.php

这是我的代码

$params = array(
            'id' => $list_id,'emails' => array(
                            'euid' => $member_id,),);
        $infos = $this->MailChimp->call('lists/member-info',$params);

print_r($infos);

这就是结果:

Array ( [success_count] => 0 [error_count] => 1 [errors] => Array ( [0] => Array ( [email] => 63a885b7cf [error] => "email" should be a struct [code] => -100 ) ) [data] => Array ( ) )

“”电子邮件“应该是一个结构”是什么意思?

这也有效,并且稍微简单一些:
$result = $MailChimp->call('lists/member-info',array(
            'id'        => $list_id,'emails'    => array(array('email'=>$email))
          ));

以上示例使用此API:https://github.com/drewm/mailchimp-api/

原文链接:https://www.f2er.com/php/138260.html

猜你在找的PHP相关文章