Mailchimp API v3.0 通过 NodeJS http 添加电子邮件到列表

Mailchimp API v3.0 add email to list via NodeJS http

我正在使用 NodeJS 调用新的 MailChimp 3.0 API 以便将电子邮件添加到列表中。虽然我可以通过 POSTman 让它工作,但我很难使用 Node 的 http:

var http = require('http');

var subscriber = JSON.stringify({
    "email_address": "test@test.com", 
    "status": "subscribed", 
    "merge_fields": {
        "FNAME": "Tester",
        "LNAME": "Testerson"
    }
});

var options = {
    host: 'https://us11.api.mailchimp.com',
    path: '/3.0/lists/<myListID>/members',
    method: 'POST',
    headers: {
        'Authorization': 'randomUser myApiKey',
        'Content-Type': 'application/json',
        'Content-Length': subscriber.length
    }
}

var hreq = http.request(options, function (hres) {  
    console.log('STATUS CODE: ' + hres.statusCode);
    console.log('HEADERS: ' + JSON.stringify(hres.headers));
    hres.setEncoding('utf8');

    hres.on('data', function (chunk) {
            console.log('\n\n===========CHUNK===============')
            console.log(chunk);
            res.send(chunk);
    });

    hres.on('end', function(res) {
            console.log('\n\n=========RESPONSE END===============');
    });

    hres.on('error', function (e) {
            console.log('ERROR: ' + e.message);
    }); 
});

hreq.write(subscriber);
hreq.end();

我什至没有从 Mailchimp 收到某种 JSON 错误,而是 HTML: 400 错误请求

400 错误请求


nginx

是否清楚我在这里做错了什么?看起来很简单,但我尝试过的任何方法似乎都不起作用。

一些额外的想法:

  1. 虽然 http 的选项有 "auth" 属性,但我使用 headers 来确保在没有编码的情况下发送授权 ()。不过,我也尝试过 "auth" 属性,我得到了相同的结果。
  2. 我实际上是从 inside 一个 ExpressJS API(我的客户调用 Express API,调用上面的代码 - 我为了简单起见,已经从这个例子中编辑了所有内容)。这就是为什么我的变量是 "hres" 和 "hreq",以区别于 Express 中的 "res" 和 "req"。有什么原因可能是问题所在吗?
  3. 如上所述,我在使用POSTman时能够获得成功的结果,所以我至少知道我的主机、路径、列表ID和API密钥是正确的。

您可以将 auth 属性与 API v3 一起使用,但如果您得到的是 400,那不是问题。 400 错误的正文应该提供更详细的信息,但有一件事会立即跳出:MailChimp 不允许将虚假或看似虚假的电子邮件添加到列表中(如 test@test.com),所以我' d 尝试一个真实的地址,看看是否适合你。

事实证明这有一个非常简单的解决方案:选项对象的 "host" 属性 需要 只有 域名。 IE,删除 "https://" 协议:

var options = {
    host: 'us11.api.mailchimp.com',
    path: '/3.0/lists/<myListID>/members',
    method: 'POST',
    headers: {
        'Authorization': 'randomUser myApiKey',
        'Content-Type': 'application/json',
        'Content-Length': subscriber.length
    }
}

试试这个,对我来说效果很好。

var request = require('request');

function mailchimpAddListCall(email, cb){
var subscriber = JSON.stringify({
        "email_address": email,
        "status": "subscribed"
    });

request({
             method: 'POST',
             url: 'https://us13.api.mailchimp.com/3.0/lists/<Your list id>/members',
             body: subscriber,
             headers:
                    {
                        Authorization: 'apikey <your Mailchimp API key>',
                        'Content-Type': 'application/json'
                    }

         },
          function(error, response, body){
            if(error) {
                cb(err, null)
            } else {

                var bodyObj = JSON.parse(body);
                console.log(bodyObj.status);
                if(bodyObj.status === 400){
                    cb(bodyObj.detail, null);
                }
                var bodyObj = JSON.parse(body);
                cb(null, bodyObj.email_address +" added to list.");
            }
        });
}

request 是一个节点模块,您需要将其安装到 package.json 中。 npm install --save request