我希望在我的网页上看到有效订阅者(包含所有字段),但我不知道,我该怎么做。
我已经拥有API密钥,只是一个很好的例子或缺少位代码。
答案 0 :(得分:0)
假设您使用的是php,以下代码将显示给定邮件列表的所有活动订阅者。您需要CampaignMonitor的官方php API库,可在此处获取:https://github.com/campaignmonitor/createsend-php。图书馆也有一些很好的例子,我建议你去研究。
(将第5行的'List ID'替换为列表的ID。)
<?php
require_once 'csrest_lists.php';
$auth = array(
'access_token' => 'your access token'
$wrap = new CS_REST_Lists('List ID', $auth);
$result = $wrap->get_active_subscribers('Added since', 1, 50, 'email', 'asc');
//$result = $wrap->get_active_subscribers(date('Y-m-d', strtotime('-30 days')),
// page number, page size, order by, order direction);
echo "Result of GET /api/v3.1/lists/{ID}/active\n<br />";
if($result->was_successful()) {
echo "Got subscribers\n<br /><pre>";
var_dump($result->response);
} else {
echo 'Failed with code '.$result->http_status_code."\n<br /><pre>";
var_dump($result->response);
}
echo '</pre>';