MailChimp APIのPerceptiveMCAPI C# Wrapperを使用してキャンペーンを作成していますが、このエラーが発生します。
オブジェクト参照がオブジェクト インスタンスに設定されていません。CookComputing.XmlRpc.XmlRpcStruct.Add (オブジェクト キー、オブジェクト値) で PerceptiveMCAPI.Methods.campaignCreate.FormatCampaignOptions (campaignCreateOptions オプション) で PerceptiveMCAPI.Methods.campaignCreate.ExecuteXmlRpc()
これは私のコードです
campaignCreateInput input = new campaignCreateInput();
input.parms.type = PerceptiveMCAPI.EnumValues.campaign_type.auto;
input.api_Validate = false;
campaignCreateOptions options = new campaignCreateOptions();
options.from_email = "info@domain.com";
options.from_name = "Some Name";
options.list_id = "xxxxxxxxx";
options.subject = txtSubject.Text;
options.authenticate = true;
options.auto_footer = true;
options.title = "SomeTitle";
input.parms.options = options;
Dictionary<string, string> content = new Dictionary<string, string>();
content.Add("html", FCKeditor1.Value);
content.Add("text", "Lorem Ipsum");
input.parms.content = content;
campaignCreate cmd = new campaignCreate(input);
return cmd.Execute();
どこが間違っていますか?
ありがとう