【发布时间】:2017-01-09 02:47:15
【问题描述】:
所以我正在尝试从 MailChimp 集成 API,以便在订阅时不会重定向到 MailChimp 网站。我正在使用这个tutorial。每当我尝试订阅时,网站都会显示一条错误消息“哦不,出现问题”。
在该网站上的代码中,这要么意味着 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>
【问题讨论】:
-
请也提供HTML部分
-
我已经添加了 HTML 部分 @MûhámmàdYäsårK
标签: javascript php jquery ajax mailchimp