我使用mailchimp 2.0添加订阅者和组成员身份。订阅部分工作正常。我需要知道的是,从下面的表单示例中,我应该在API的参数中提供哪些值。
这里是来自mailchimp产生的订阅嵌入式表单示例的剪辑:
<strong>App Registration </strong>
<ul>
<li>
<input type="checkbox" value="1" name="group[6425][1]"
id="mce-group[6425]-6425-0">
<label for="mce-group[6425]-6425-0">Installed on Android</label>
</li>
<li>
<input type="checkbox" value="4" name="group[6425][4]"
id="mce-group[6425]-6425-1">
<label for="mce-group[6425]-6425-1">Installed on iOS</label>
</li>
</ul>
<strong>Newsletter </strong>
<ul>
<li>
<input type="checkbox" value="2" name="group[6429][2]"
id="mce-group[6429]-6429-0">
<label for="mce-group[6429]-6429-0">Receive periodic newsletter</label>
</li>
</ul>
我需要为参数的分组部分提供类似的东西(使用PHP):
$groupings => array (array ('id' => 6425,
'groups' => array("Installed on Android")));
如果我希望用户成为&#34;安装在Android&#34;上的成员。问题是我应该使用html中的哪些值?
value="1",
name="group[6425][1]", or
id="mce-group[6425]-6425-0"
API文档还说要为此分组提供一系列&#34;名称&#34;。当然,他们不希望团队的实际UI文本因为可能会随心所欲地改变。我尝试过使用实际的文本,这确实有效。我没有尝试任何其他工作。这是他们真正想要的吗?