我正在使用 WordPressSharp 并尝试将内容添加到我的 wordpress 博客中。
我在添加内容时遇到问题。
Helper.WordpressConfigurations.postToWordpress(1, "testing", "content description");
这是我的发布方法
public static Post setPost(int postType, string title, string content)
{
string type = postType == 1 ? "post" : "page";
int categoryId = 0;
switch ("".ToLowerInvariant())
{
case "arrow": categoryId = 4; break;
default: categoryId = 0; break;
}
return new Post
{
PostType = "post", // "post" or "page"
Title = title,
Content = content,
PublishDateTime = DateTime.Now,
Status = "publish"//, // "draft" or "publish",
//Terms = terms
};
}
在 WordpressClient.cs 中出现异常 >
我的完整代码在这里http://paste.ubuntu.com/10793675/