php向wordpress等支持xmlrpc的网站离线发帖的代码
上周做了一个银魂的网站
喜欢吐槽的热血动画的粉丝可以看看。
因为一个人做,比较吃力,我就想做一个自动维护程序(其实就是采集器的意思)
下面公布一下php向这类网站发送文章的代码(php向wordpress,blogbus,cnblogs等支持xmlrpc的网站离线发帖的代码)
分类属性(categories,mt_keywords)自己改。
附件里是wordpress xmlrpc协议的类库
<?php function send_to_other($web, $title, $con, $USER, $PASS, $count = - 1) { $client = new IXR_Client($web); $content['title'] = $title; //$get_post_info->post_category; $content['categories'] = array( "同人" ); $content['description'] = $con; // $content['custom_fields'] = array( array('key' => 'my_custom_fied','value'=>'yes') ); $content['mt_keywords'] = '同人'; if (!$client->query('metaWeblog.newPost', '', $USER, $PASS, $content, true)) { die('Error while creating a new post' . $client->getErrorCode() . " : " . $client->getErrorMessage()); } $ID = $client->getResponse(); if ($ID) { // echo 'Post published with ID:#'.$ID; } return $post_ID; } ?>
本文地址:http://www.phprm.com/function/php1006137.html
转载随意,但请附上文章地址:-)