之前一直使用一个叫做新浪连接的插件来同步我的博客内容到新浪微博上。最近今天发现,总是同步失败,发布内容时页面报500错误。仔细查了下,是新浪强制使用了Oauth2的认证方式,插件使用的老认证方式已经不被支持了。到插件官网去看,作者貌似没有更新插件的意思,只能自己再想他法鸟。
找了一下,发现微博通提供api可以调用,同时提供了一个现成的wordpress插件,只需要注册微博通,然后在里面绑定微博账号,当然,可以绑定新浪、人人、腾讯等各种微博,一发全发,这个是之前那个插件没有的优势。不过也有令人不爽的地方,首先是这个插件功能比较弱,只能发文章标题,不能发摘要,不能发图片。参考新浪连接,我就把代码改了下,现在可以发标题摘要也能发图片了。代码如下:
<?php /* Plugin Name: 微博通同步发布 Plugin URI: http://www.wbto.cn Description: 自动把你的博客文章同步到微博通,微博通将同步至你所绑定的各个平台。 Version: 1.0 Author: yige <abcwuwuwu@qq.com> Author URI: http://t.qq.com/abcwuwuwu Date: 2011年3月17日 23:07:30 Modified by :zhujianfeng <http://weibo.com/fdjianfeng> 2012-07-27 */ function wbto_install() { global $wpdb; $table_name = $wpdb->prefix."wbto"; if($wpdb->get_var("show tables like '$table_name'") != $table_name) { $sql = "CREATE TABLE " . $table_name . " (id mediumint(9) NOT NULL AUTO_INCREMENT, wbto_username VARCHAR(100) NOT NULL, wbto_password VARCHAR(100) NOT NULL, );"; } require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); dbDelta($sql); } function send_to_wbto($post_ID) { $username = get_option('wbto_username'); $password = get_option('wbto_password'); $posted = get_post($post_ID); $post_title = $posted->post_title; $post_content = get_post_excerpt($posted); $title_len = mb_strlen($post_title,'UTF-8'); $content_len = mb_strlen($post_content,'UTF-8'); $rest_len = 110; if($title_len + $content_len> $rest_len) { $post_content = mb_substr($post_content,0,$rest_len-$title_len).'... '; } $status = '【'.$post_title.'】 '.$post_content; $pic = get_post_first_image($posted->post_content); $fields = array(); $fields['source'] = 'wordpress'; $fields['content'] = urlencode($status.' '.$posted->guid); $wbto_url = "http://wbto.cn/api/update.json"; if ($pic){ $wbto_url = "http://wbto.cn/api/upload.json"; $fields["imgurl"] = $pic; } $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $wbto_url); curl_setopt($ch, CURLOPT_USERPWD, "$username:$password"); curl_setopt($ch, CURLOPT_FAILONERROR, TRUE); curl_setopt($ch, CURLOPT_RETURNTRANSFER,TRUE); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_POST, TRUE); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); $result = curl_exec($ch); curl_close($ch); } function wbto_menu() { add_options_page('微博通同步设置', '微博通同步', 8, __FILE__, 'wbto_options'); } if(!function_exists('get_post_excerpt')){ function get_post_excerpt($post){ $post_excerpt = strip_tags($post->post_excerpt); if(!$post_excerpt){ ###第一种情况,以<p>开始,</p>结束来取第一段 Windows live writer if(preg_match('/<p>(.*)<\/p>/iU',trim(strip_tags($post->post_content,"<p>")),$result)){ $post_content = $result['1']; } else { ###第二种情况,以换行符(\n)来取第一段 $post_content_r = explode("\n",trim(strip_tags($post->post_content))); $post_content = $post_content_r['0']; } $post_excerpt = explode("\n",trim(strip_tags($post->post_content))); $post_excerpt = $post_excerpt['0']; } $post_excerpt = trim(strip_tags($post_excerpt)); $post_excerpt = str_replace('"', '', $post_excerpt); // replace newlines on mac / windows? $post_excerpt = str_replace("\r\n", ' ', $post_excerpt); // maybe linux uses this alone $post_excerpt = str_replace("\n", ' ', $post_excerpt); $post_excerpt = mb_substr($post_excerpt,0,120); return $post_excerpt; } } if(!function_exists('get_post_first_image')){ function get_post_first_image($post_content){ preg_match_all('|<img.*?src=[\'"](.*?)[\'"].*?>|i', $post_content, $matches); if($matches){ return $matches[1][0]; }else{ return false; } } } function wbto_options() { echo '<div class="wrap">'; echo '<h2>微博通同步</h2>'; echo '<form method="post" action="options.php">'; echo wp_nonce_field('update-options'); echo '<table class="form-table">'; echo '<tr valign="top">'; echo '<th scope="row">用户名 <a href="http://www.wbto.cn/?app=wp">注册</a></th>'; echo '<td><input type="text" name="wbto_username" value="'.get_option('wbto_username').'" /></td>'; echo '</tr>'; echo '<tr valign="top">'; echo '<th scope="row">密码</th>'; echo '<td><input type="password" name="wbto_password" value="'.get_option('wbto_password').'" /></td>'; echo '</tr>'; echo '</table>'; echo '<input type="hidden" name="action" value="update" />'; echo '<input type="hidden" name="page_options" value="wbto_username,wbto_password" />'; echo '<p class="submit">'; echo '<input type="submit" name="submit" id="submit" class="button-primary" value="保存更改" />'; echo '</p>'; echo '</form>'; echo '</div>'; } add_action('admin_menu', 'wbto_menu'); add_action('publish_post', 'send_to_wbto'); ?>
还有另外一点比较不爽的就是,发送频率有限制,具体限制多久不知道,但是根据我的测试,5分钟内发两次是不行的。
参考的文章如下:
http://fairyfish.net/project/sina-connect/
http://www.jsxubar.info/wordpress-use-wp_wbto-plugin-sync-post-to-weibo.html