我有一个 Mailchimp RSS 活动,它读取网站上的 RSS 提要并设置为每天一次。在我将项目添加到提要后,我想以编程方式发送此广告系列。
我正在使用 PerceptiveMCAPI,我的触发活动的代码是
campaignSendNowInput campaignSendNowInput = new campaignSendNowInput(apiKey, campaignKey);
campaignSendNow campaignSendNow = new campaignSendNow(campaignSendNowInput);
campaignSendNowOutput campaignSendNowOutput = campaignSendNow.Execute();
我收到的错误看起来像
"Error Code: 313, Message: This Campaign has already been sent and can not be sent again."
关于什么会导致这种情况的任何想法?