最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Error: The requested resource could not be found - Stack Overflow

programmeradmin2浏览0评论

I am trying to implement mailchimp v3. And for that this is the code I am using to get this work. But I don't know what is /lists/id/members and from where I can get that. And thus I am getting this error

Error: The requested resource could not be found.
       at Request._callback (/mailchimp-api-v3/index.js:515:30)

Here is my code

const Mailchimp = require('mailchimp-api-v3')
const mailchimp = new Mailchimp('XXXX-XXXX-XXXX');

mailchimp.post('/lists/id/members', {
  email_address : 'myEmailId',
  status : 'subscribed'
})
.then(function(results) {
  console.log({results})
})
.catch(function (err) {
  console.log({err})
})

I am trying to implement mailchimp v3. And for that this is the code I am using to get this work. But I don't know what is /lists/id/members and from where I can get that. And thus I am getting this error

Error: The requested resource could not be found.
       at Request._callback (/mailchimp-api-v3/index.js:515:30)

Here is my code

const Mailchimp = require('mailchimp-api-v3')
const mailchimp = new Mailchimp('XXXX-XXXX-XXXX');

mailchimp.post('/lists/id/members', {
  email_address : 'myEmailId',
  status : 'subscribed'
})
.then(function(results) {
  console.log({results})
})
.catch(function (err) {
  console.log({err})
})
Share Improve this question asked Sep 4, 2019 at 7:16 ProferProfer 64310 gold badges47 silver badges97 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 3

You need to replace the /(id)/ part with your actual list id, following this official guide.

https://mailchimp./help/find-audience-id/

发布评论

评论列表(0)

  1. 暂无评论