我正在使用jwordpress-0.4.jar发布到 WordPress 安装。
我正在使用的代码是:
Wordpress wp = new Wordpress(username, password, xmlRpcUrl);
Page recentPost = new Page();
recentPost.setPost_status("Published");
recentPost.setDescription("<ul>" + desc + "</ul>");
recentPost.setCategories(cat);
String pageID=recentPost.getPage_id();
String result = wp.newPost(recentPost, true);
这以前效果很好,但是现在当我去发布它进入它的调度模式时,我尝试过:
最近的Post.setPost_status(“已发布”);
和
wp.newPost(recentPost, true);
但是帖子仍然没有发布: