Добавление подписчика в mailchimp 3.0 с узлом https - PullRequest
0 голосов
/ 05 мая 2020

Это мое приложение. js файл:

const express = require("express");
const bodyParser = require("body-parser");
const request = require("request");
const https = require("https");

const app = express();

app.use(express.static("public"));
app.use(bodyParser.urlencoded({extended: true}));

app.get("/", function(req, res){
  res.sendFile(__dirname + "/signup.html");
});

app.post("/", function(req, res){

  const firstName = req.body.fname;
  const lastName = req.body.lname;
  const email = req.body.email;


  var data = {
    members: [{
      "email_address": email,
      "status": "subscribed",
      "merge_fields": {
        "FNAME": firstName,
        "LNAME": lastName
      }
    }]
  };

  var jsondata = JSON.stringify(data);

  const url = `https://us8.api.mailchimp.com/3.0/lists/<list id>`; 

  const options = {
    method: "POST",
    auth: "jay:<my API key>"
  };

  const request = https.request(url, options, function(response){
    response.on("data", function(data){
      console.log(JSON.parse(data));
    });

  });

  request.write(jsondata);
  request.end();


});

app.listen(3000, function(){
  console.log("You are now live");
});

Когда моя форма отправляется, я получаю статус ошибки 400, упомянутый ниже:

{
  type: 'http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/',
  title: 'Invalid Resource',
  status: 400,
  detail: "The resource submitted could not be validated. For 
field-specific details, see the 'errors' array.",
  instance: '25fa1c2d-0740-4e45-9c9c-43c51cca5862',
  errors: [
    {
      field: 'email_address',
      message: 'This value should not be blank.'
    }
  ]
}
{
  type: 'http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/',
  title: 'Invalid Resource',
  status: 400,
  detail: "The resource submitted could not be validated. For 
field-specific details, see the 'errors' array.",
  instance: 'dc94871f-2eba-417a-ba0f-b913de939b64',
  errors: [
    {
      field: 'email_address',
      message: 'This value should not be blank.'
    }
  ]
}

Я думал, что моя форма не отправьте адрес электронной почты, но когда я зарегистрировал значение в консоли, он возвращает то, что ввел пользователь. Я прочитал документацию, и мне очень трудно понять, что означает ошибка ... Это будет большим подспорьем, если вы сможете решить эту проблему.

Спасибо.

...