MailChimp AJAX API not calling API



所以我试图从MailChimp集成API,这样我就不会在订阅时重定向到MailChimp网站。我正在使用这个教程。每当我尝试订阅时,网站都会提示"哦,不,出现问题"。

在该站点的代码中,它要么意味着API调用出现了错误,要么意味着AJAX函数返回了非200。问题是我在代码中找不到问题。我可能在代码中插入了错误的信息,但是我找不到任何内容。

JavaScript:

$('document').ready(function () {
    $('form').submit(function (e) {
        //prevent the form from submitting via the browser redirect
        e.preventDefault();
        //grab attributes and values out of the form
        var data = {
            email: $('#mc-email').val()
        };
        var endpoint = $(this).attr('action');
        //make the ajax request
        $.ajax({
            method: 'POST'
            , dataType: "json"
            , url: endpoint
            , data: data
        }).success(function (data) {
            if (data.id) {
                //successful adds will have an id attribute on the object
                alert('thanks for signing up');
            }
            else if (data.title == 'Member Exists') {
                //MC wil send back an error object with "Member Exists" as the title
                alert('thanks, but you are alredy signed up');
            }
            else {
                //something went wrong with the API call
                alert('oh no, there has been a problem');
            }
        }).error(function () {
            //the AJAX function returned a non-200, probably a server problem
            alert('oh no, there has been a problem');
        });
    });
});
PHP:

<?php
//fill in these values for with your own information
$api_key = 'realapikey-us14';
$datacenter = 'us14';
$list_id = 'reallistid';
$email = $_POST['email'];
$status = 'subscribed';
if(!empty($_POST['status'])){
    $status = $_POST['status'];
}
$url = 'https://'.$datacenter.'.api.mailchimp.com/3.0/lists/'.$list_id.'/members/';
$username = 'apikey';
$password = $api_key;
$data = array("email_address" => $email,"status" => $status);
$data_string = json_encode($data);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$api_key");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/json',
    'Content-Length: ' . strlen($data_string))
);
$result=curl_exec ($ch);
curl_close ($ch);
echo $result;
?>
HTML:

<form action="./endpoint.php" method="POST" id="form mailchimp">
            <input type="hidden" name="u" value="VALUEFORLIST">
            <input type="hidden" name="id" value="LISTID">
            <input name="FNAME" class="popupname" type="text" value="" placeholder="Naam:" required/>
            <br>
            <input id="mc-email" name="EMAIL" class="popupemail" type="email" value="" placeholder="Email:" required/>
            <br>
            <input name="action" class="popupsubmit" type="submit" value="Aanmelden" class="submit" /> 
</form>

如果您像bxxxxxxxxxxxxxxxxxxxxxxxxxxxxx5dxf-us10一样传递apikey,那么请求将不会成功。

尝试通过跳过连字符后面的字符来传递apikey(如bxxxxxxxxxxxxxxxxxxxxxxxxxxxxx5dxf)并检查它是否有效。

在本例中,从

编辑php代码
$api_key = 'realapikey-us14';

$api_key = 'realapikey';