2

正如删除订阅者的文档中所预期的那样,但它不起作用

require_once('aweber_api/aweber_api.php');

$consumerKey    = '***'; # put your credentials here
$consumerSecret = '***'; # put your credentials here
$accessKey      = '***'; # put your credentials here
$accessSecret   = '***'; # put your credentials here
$account_id     = '***'; # put the Account ID here
$list_id        = '***'; # put the List ID here

$aweber = new AWeberAPI($consumerKey, $consumerSecret);

try {
    $account = $aweber->getAccount($accessKey, $accessSecret);
    $listURL = "/accounts/{$account_id}/lists/{$list_id}";
    $list = $account->loadFromUrl($listURL);

    # subscriber to delete
    $params = array(
        'email' => 'johndoe@example.com'
    );
    $subscribers = $list->subscribers;
    $new_subscriber = $subscribers->delete($params);

    # success!
    print "Subscriber was deleted!";

} catch(AWeberAPIException $exc) {
    print "<h3>AWeberAPIException:</h3>";
    print " <li> Type: $exc->type              <br>";
    print " <li> Msg : $exc->message           <br>";
    print " <li> Docs: $exc->documentation_url <br>";
    print "<hr>";
    exit(1);
}

我的参考https://labs.aweber.com/snippets/subscribers#del

4

1 回答 1

3

试试这个代码。它为我工作

require_once('aweber_api/aweber_api.php');

$consumerKey = '###';
$consumerSecret = '###';
$accessKey = '###';
$accessSecret = '###';
$account_id = '###';
$list_id = '###';

$aweber = new AWeberAPI($consumerKey, $consumerSecret);

try {
    $account = $aweber->getAccount($accessKey, $accessSecret);
    $listURL = "/accounts/{$account_id}/lists/{$list_id}";
    $list = $account->loadFromUrl($listURL);

    $params = array(
        'email' => 'info@examples.com'
    );

    $subscribers = $list->subscribers;
    $found_subscribers = $subscribers->find($params);

    foreach ($found_subscribers as $subscriber) {
        $subscriber->delete();
    }

    print "Subscriber was deleted!";

} catch(AWeberAPIException $exc) {

    print "AWeberAPIException:";
    print "Type: $exc->type";
    print "Msg : $exc->message";
    print "Docs: $exc->documentation_url";
    exit(1);
}
于 2013-09-18T05:35:33.517 回答