如何使用php和Curl更改Twitter的状态而不使用oAuth
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用php和Curl更改Twitter的状态而不使用oAuth相关的知识,希望对你有一定的参考价值。
Since the 31 of august 2010, twitter made its API more secure, stopping basic authentication calls.So, if you used basic authentication you have to change your code and implement oAuth authentication model or you can follow this link and found a mini spider that does the work.
function twitterSetStatus($user,$pwd,$status) { if (!function_exists("curl_init")) die("twitterSetStatus needs CURL module, please install CURL on your php."); // ------------------------------------------------------- // get login form and parse it curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (Khtml, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3 "); preg_match("/input name="authenticity_token" type="hidden" value="(.*?)"/", $page, $authenticity_token); // ------------------------------------------------------- // make login and get home page // check if login was ok preg_match("/input name="authenticity_token" type="hidden" value="(.*?)"/", $page, $authenticity_token); // ------------------------------------------------------- // send status update $tweet['display_coordinates']=''; $tweet['in_reply_to_status_id']=''; $tweet['lat']=''; $tweet['long']=''; $tweet['place_id']=''; $tweet['text']=$status; return true; }
以上是关于如何使用php和Curl更改Twitter的状态而不使用oAuth的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 Twitter API、PHP 和 curl 发布图像和文本?媒体/上传和状态/更新