jwordpress를 사용하여 WordPress에 게시물 게시 저는 워드프레스 설치에 게시하기 위해 jwordpress-0.4.jar를 사용하고 있습니다. 제가 사용하고 있는 코드는 다음과 같습니다. Wordpress wp = new Wordpress(username, password, xmlRpcUrl); Page recentPost = new Page(); recentPost.setPost_status("Published"); recentPost.setDescription("" + desc + ""); recentPost.setCategories(cat); String pageID=recentPost.getPage_id(); String result = wp.newPost(recentPost, tru..