Posted by Joys of Programming on in
Wordpress,
XML-RPC
With wordpress XMLRPC, you can write your own client to blog from your desktop. metaWeblog.newPost takes five parameters Post ID Username Password Content of the Post To Publish or not The first parameter is the ID of the post to be edited. The fourth parameter contains the content of the post (edited post).The fifth parameter [...]
Tags: metaWeblog.editPost, wordpress editing post, wordpress xmlrpc, wordpress XMLRPC Example, wordpress xmlrpc post editing
Posted by Joys of Programming on in
PHP,
Wordpress,
XML-RPC
Using wp.getUsersBlog, you can find the blogs corresponding to the user whose “username” is sent. Now with the response, you can get the blogid. The tags corresponding to the blog can be found using wp.getTags. It takes three parameters BlogID (One of the result parameters in wp.getUsersBlogs) Username Password This is shown here On executing [...]
Tags: WordPress, wordpress xmlrpc, wordpress XMLRPC Example, wp.getTags
Posted by Joys of Programming on in
PHP,
Wordpress
How often do you go to WordPress.com to update your blogs? Or you may have a blog using the wordpress blogging platform. You often desired to have some editors which help you to directly blog from your desktops without going to the browser. For this purpose, wordpress also provides the XMLRPC interface. Using the XMLRPC [...]
Tags: wordpress xmlrpc, wordpress XMLRPC Example, wp.getUserBlogs
Posted by Joys of Programming on in
PHP,
Wordpress,
XML-RPC
WordPress XMLRPC provides the following functions. You can check the individual functions or make use of this Simple WordPress XMLRPC example. WordPress API wp.getUsersBlogs wp.getPage wp.getPages wp.newPage wp.deletePage wp.editPage wp.getPageList wp.getAuthors wp.getCategories wp.getTags wp.newCategory wp.deleteCategory wp.suggestCategories wp.uploadFile wp.getCommentCount wp.getPostStatusList wp.getPageStatusList wp.getPageTemplates wp.getOptions wp.setOptions wp.getComment wp.getComments wp.deleteComment wp.editComment wp.newComment wp.getCommentStatusList Blogger API blogger.getUsersBlogs blogger.getUserInfo blogger.getPost blogger.getRecentPosts [...]
Tags: wordpress xmlrpc, wordpress XMLRPC Example, wordpress xmlrpc tutorial