无法使用XMLRPC发布Wordpress 3.5.2的帖子

时间:2013-07-29 09:01:17

标签: c# wordpress

我使用XMLRPC将一个帖子发布到Wordpress(3.5.2)这里是我的代码:

public string newPost(string title, string content, string[] categoryIds)
    {
        this.Url = this.url ;
        Post post = new Post();
        post.post_date = DateTime.Now;
        post.post_title = title;
        post.post_content = content;
        post.post_status = "publish";

        XmlRpcStruct terms = new XmlRpcStruct();
        terms.Add("category", categoryIds);
        post.terms = terms;

        return newPost("0", this.username, this.password, post, true);
    }
    [XmlRpcMethod("wp.newPost ")]
    public string newPost(string blogId, string username, string password, Post content, bool pubish)
    {
        string s = "";
        try
        {
            s = (string)this.Invoke("newPost", new object[] { blogId, username, password, content, pubish });
        }
        catch (Exception ex)
        {
            s = ex.Message;
        }
        return s;
    }

但是当我从adnin查看该帖子时,它会显示“已安排”

有什么想法吗?谢谢。

1 个答案:

答案 0 :(得分:3)

Wordpress安装配置的时区与发布客户端工作站的时区不同。这导致帖子带有未来日期(从WP的角度来看),这标志着它具有预定状态而不是立即发布。确保您正确设置了wp安装时区(例如,如果您居住在PST GMT-8区域,请使用“America / Los Angeles”设置,以便计算夏令时)。

编辑:您的方法参数中有一个名为“pubish”的拼写错误,而不是“发布”