Heim > Backend-Entwicklung > PHP-Tutorial > 使用新浪微博开放平台api同步网站内容至自己微博的问题

使用新浪微博开放平台api同步网站内容至自己微博的问题

WBOY
Freigeben: 2016-06-23 13:30:24
Original
1481 Leute haben es durchsucht


据说wordpress网站可以实现在发文时同步文章到新浪微博,想根据同样的方法写一段php代码测试。以下内容引用自:http://kinggoo.com/wpsycnweibo.htm

同步到微博大概有三种方法,插件、关联博客、非插件微博接口
第一种,直接百度搜索就可以; 
第二种,由于新浪现在已经取消了关联博客的选项,但该功能却没有被取消你可以放问下面这个地址,然后配置一下就可以了

第三种方法需要使用新浪的接口,如下操作: 
1)到新浪微博开放平台创建一个站内应用,通过不通过审核都可以,只不过通过的话可以在微博下方显示来自某某应用,如来自KingGoo技术博客image ,具体怎么创建你可以在百度谷歌上搜索一下,很简单(但如果你一直没有通过审核,还想通过审核的话,我可以提供有偿帮助嘎嘎~),创建好应用后,下面需要使用到申请应用的 App Key; 
2)编辑你主题的functions.php文件,在其最后加入如下代码

// 微博同步function post_to_sina_weibo($post_ID) {  if( wp_is_post_revision($post_ID) ) return;    $get_post_info = get_post($post_ID);    $get_post_centent = get_post($post_ID)->post_content;     //去掉文章内的html编码的空格、换行、tab等符号(如果你文章的编码格式是这样子,可以将下面的"//"去掉即开启此功能)    //$get_post_centent = str_replace("\t", " ", str_replace("\n", " ", str_replace(" ", " ", $get_post_centent)));    $get_post_title = get_post($post_ID)->post_title;  if ( $get_post_info->post_status == 'publish' && $_POST['original_post_status'] != 'publish' ) {    $request = new WP_Http;    $status = '【' . strip_tags( $get_post_title ) . '】 ' . mb_strimwidth(strip_tags( apply_filters('the_content', $get_post_centent)),0, 132,'...') . ' 全文地址:' . get_permalink($post_ID) ;    $api_url = 'https://api.weibo.com/2/statuses/update.json';    $body = array( 'status' => $status, 'source'=>'4135063399');    $headers = array( 'Authorization' => 'Basic ' . '1fFjYc3uQHZpcF32fS5jb146MxFeY19DYF53aWfzNA==' );	/*	如果你使用改方法,请注释掉上面$headers = array( 'Authorization' => 'Basic ' . '1fFjYc3uQHZpcF32fS5jb146MxFeY19DYF53aWfzNA==' );	换成如下代码	//你的新浪微博登陆名	$username = '' ;	//你的新浪微博登陆密码	$password = '' ;	$headers = array( 'Authorization' => 'Basic ' .  base64_encode('$username:$password'));	*/	    $result = $request->post( $api_url , array( 'body' => $body, 'headers' => $headers ) );    }}add_action('publish_post', 'post_to_sina_weibo', 0);
Nach dem Login kopieren

文中需要用到wordpress自带的WP_Http类,在github找了一个代替品:https://github.com/duoshuo/easy-http
关于该类的说明:EasyHttp是一个帮助你忽略不同的php环境情况,无差别地发送http请求的php类。 你不再需要关注当前php环境是否支持curl/fsockopen/fopen,EasyHttp会自动选择一个最合适的方式去发出http请求。 EasyHttp源于WordPress中的WP_Http类,去除了所有对WordPress其他函数的依赖,将其拆分到不同的文件中,并做了少量简化。
根据以上内容,写php代码1.php:
<?phprequire ('EasyHttp.php');require ('EasyHttp/Curl.php');require ('EasyHttp/Cookie.php');require ('EasyHttp/Encoding.php');require ('EasyHttp/Fsockopen.php');require ('EasyHttp/Proxy.php');require ('EasyHttp/Streams.php');$r = new EasyHttp();$status = 'ceshi444bbbb' ;$api_url = 'https://api.weibo.com/2/statuses/update.json';    $body = array( 'status' => $status, 'source'=>'这里appkey');$headers = array( 'Authorization' => 'Basic ' .'这里64位编码后的用户名和密码' );$result = $r->post( $api_url , array('body' => $body, 'headers' => $headers ) );print_r($result);?>
Nach dem Login kopieren


浏览器访问1.php时返回以下内容:
Array ( [headers] => Array ( [server] => nginx/1.2.0 [date] => Sun, 13 Oct 2013 02:23:46 GMT [content-type] => text/plain;charset=UTF-8 [content-length] => 76 [connection] => close [api-server-ip] => 10.75.0.170 [vary] => Accept-Encoding [x-varnish] => 3299864740 [age] => 0 [via] => 1.1 varnish ) [body] => Bad Content-Type header value: 'application/x-www-form-urlencoded; charset=' [response] => Array ( [code] => 400 [message] => Bad Request ) [cookies] => Array ( ) [filename] => )

好像是400 Bad Request,百度了下,意思是“由于语法格式有误,服务器无法理解此请求。不作修改,客户程序就无法重复此请求。”

请问各位这个问题怎么入手解决?


回复讨论(解决方案)

还是看这个博客吧,,,http://zhangge.net/4947.html

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage